diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-30 18:46:39 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-30 18:46:39 +0000 |
commit | dbef3f46b9d112766f2a773a19a0ed86d6e130f8 (patch) | |
tree | 1bc9827c0c91073f9a9383106e6e269848016f65 | |
parent | cf2c671f8222da514ec48a2e53b868ae18ef4396 (diff) | |
download | ffmpeg-dbef3f46b9d112766f2a773a19a0ed86d6e130f8.tar.gz |
cosmetics: Move all #includes together at the beginning of the file.
Originally committed as revision 16862 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/internal.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h index bd2ce5cf6c..63d14a55e3 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -34,6 +34,7 @@ #include <stdint.h> #include <stddef.h> #include <assert.h> +#include "config.h" #include "common.h" #include "timer.h" @@ -97,8 +98,6 @@ # define PIC #endif -#include "config.h" - #ifndef offsetof # define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F)) #endif |