changeset 366:4d3f4347b718 libavutil

move #include of system headers to top of file
author mru
date Sat, 14 Jul 2007 14:34:40 +0000
parents 7f9e8e77c86b
children 6797bf24b2de
files internal.h
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/internal.h	Sat Jul 14 11:33:16 2007 +0000
+++ b/internal.h	Sat Jul 14 14:34:40 2007 +0000
@@ -26,7 +26,13 @@
 #ifndef INTERNAL_H
 #define INTERNAL_H
 
+#if !defined(DEBUG) && !defined(NDEBUG)
+#    define NDEBUG
+#endif
+
 #include <stdint.h>
+#include <stddef.h>
+#include <assert.h>
 
 #ifndef attribute_used
 #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
@@ -87,7 +93,6 @@
 #include "intreadwrite.h"
 #include "bswap.h"
 
-#include <stddef.h>
 #ifndef offsetof
 #    define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F))
 #endif
@@ -117,11 +122,6 @@
 
 /* debug stuff */
 
-#if !defined(DEBUG) && !defined(NDEBUG)
-#    define NDEBUG
-#endif
-#include <assert.h>
-
 /* dprintf macros */
 #ifdef DEBUG
 #    define dprintf(pctx, ...) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__)