summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-07-14 14:34:40 +0000
committerMåns Rullgård <mans@mansr.com>2007-07-14 14:34:40 +0000
commit318049b8eda451d768e34d8e97bb3bbe457faace (patch)
tree17f957d1dc62efcdfaf0fd24601223357fd445e5 /libavutil
parent6d7eee8418eb69a4c6888f11ed517c73e2f1cb8a (diff)
move #include of system headers to top of file
Originally committed as revision 9646 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/internal.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h
index b44e1229f4..e8dc72ef85 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -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__)