From 180972a54ec5b2e0b4d0667092dbd38f7f90574e Mon Sep 17 00:00:00 2001 From: kramm Date: Fri, 7 May 2004 16:12:17 +0000 Subject: [PATCH] fixed import order. --- lib/python/action.h | 4 ++-- lib/python/primitives.h | 2 +- lib/python/tag.h | 2 +- lib/python/taglist.h | 4 ++-- lib/python/tagmap.h | 4 ++-- lib/python/tags.h | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/python/action.h b/lib/python/action.h index c96e7c2..22637a9 100644 --- a/lib/python/action.h +++ b/lib/python/action.h @@ -23,9 +23,9 @@ #ifndef __action_h__ #define __action_h__ -#include "../rfxswf.h" -#undef HAVE_STAT #include +#undef HAVE_STAT +#include "../rfxswf.h" extern PyTypeObject ActionClass; PyObject* f_Action(PyObject* self, PyObject* args, PyObject* kwargs); diff --git a/lib/python/primitives.h b/lib/python/primitives.h index 47647e6..694a8ab 100644 --- a/lib/python/primitives.h +++ b/lib/python/primitives.h @@ -23,8 +23,8 @@ #ifndef __primitives_h__ #define __primitives_h__ -#undef HAVE_STAT #include +#undef HAVE_STAT #include "../rfxswf.h" diff --git a/lib/python/tag.h b/lib/python/tag.h index 7ee0338..4013038 100644 --- a/lib/python/tag.h +++ b/lib/python/tag.h @@ -23,8 +23,8 @@ #ifndef __tag_h__ #define __tag_h__ -#undef HAVE_STAT #include +#undef HAVE_STAT #include "../rfxswf.h" #include "tagmap.h" diff --git a/lib/python/taglist.h b/lib/python/taglist.h index f111e96..4c85d48 100644 --- a/lib/python/taglist.h +++ b/lib/python/taglist.h @@ -23,9 +23,9 @@ #ifndef __taglist_h__ #define __taglist_h__ -#include "../rfxswf.h" -#undef HAVE_STAT #include +#undef HAVE_STAT +#include "../rfxswf.h" extern PyTypeObject TagListClass; diff --git a/lib/python/tagmap.h b/lib/python/tagmap.h index d35aa43..66f6ed4 100644 --- a/lib/python/tagmap.h +++ b/lib/python/tagmap.h @@ -23,9 +23,9 @@ #ifndef __tagmap_h__ #define __tagmap_h__ -#include "../rfxswf.h" -#undef HAVE_STAT #include +#undef HAVE_STAT +#include "../rfxswf.h" extern PyTypeObject TagMapClass; int tagmap_obj2id(PyObject* self, PyObject* obj); diff --git a/lib/python/tags.h b/lib/python/tags.h index da6a1eb..c338d99 100644 --- a/lib/python/tags.h +++ b/lib/python/tags.h @@ -23,9 +23,9 @@ #ifndef __tags_h__ #define __tags_h__ -#include "../rfxswf.h" -#undef HAVE_STAT #include +#undef HAVE_STAT +#include "../rfxswf.h" PyMethodDef* tags_getMethods(); -- 1.7.10.4