Mercurial > mplayer.hg
changeset 35953:2211ce940290
loader: Simplify stdint.h #include handling.
There is no need for an ifdef, we assume stdint.h to be available.
author | diego |
---|---|
date | Sat, 23 Mar 2013 14:48:16 +0000 |
parents | 691431d2289e |
children | b1d68e8f28c0 |
files | loader/com.h |
diffstat | 1 files changed, 2 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/loader/com.h Sat Mar 23 14:32:26 2013 +0000 +++ b/loader/com.h Sat Mar 23 14:48:16 2013 +0000 @@ -6,13 +6,9 @@ #ifndef MPLAYER_COM_H #define MPLAYER_COM_H -#include "config.h" +#include <stdint.h> -#ifdef HAVE_STDINT_H -#include <stdint.h> -#else -#include <inttypes.h> -#endif +#include "config.h" /** * Internal functions and structures for COM emulation code.