diff options
author | wm4 <wm4@nowhere> | 2012-07-31 23:37:56 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2012-07-31 23:37:56 +0200 |
commit | f752212c6235316e681fade76c5693d46df7d310 (patch) | |
tree | ae098ae650e99ff9a4a50bf3c7b0f7cd8b1b841a /libaf | |
parent | 0744d99c5df3a2c7b3600083c97785eb3e6215b2 (diff) |
Change <endian.h> include to <sys/types.h>
This seems to be more portable. Should fix compilation on OSX and
FreeBSD. Apparently also works on MinGW-w64.
Diffstat (limited to 'libaf')
-rw-r--r-- | libaf/af_format.c | 2 | ||||
-rw-r--r-- | libaf/af_format.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libaf/af_format.c b/libaf/af_format.c index 5cee93442c..b9f13e6dca 100644 --- a/libaf/af_format.c +++ b/libaf/af_format.c @@ -26,7 +26,7 @@ #include <inttypes.h> #include <limits.h> #include <math.h> -#include <endian.h> +#include <sys/types.h> #include "config.h" #include "af.h" diff --git a/libaf/af_format.h b/libaf/af_format.h index 73e4c88c3e..751e97ef3a 100644 --- a/libaf/af_format.h +++ b/libaf/af_format.h @@ -23,7 +23,7 @@ #ifndef MPLAYER_AF_FORMAT_H #define MPLAYER_AF_FORMAT_H -#include <endian.h> +#include <sys/types.h> #include "config.h" // Endianness |