diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-07-02 17:00:04 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-07-02 17:00:04 +0000 |
commit | 224906414b7f157416dabc4f98c0d3076c631521 (patch) | |
tree | 73b8e0760d8dcdef94053e702fc475d4e5d572a3 /libavutil/bswap.h | |
parent | 064cd7a89770478a992f2e932402bf064a0a7024 (diff) | |
download | ffmpeg-224906414b7f157416dabc4f98c0d3076c631521.tar.gz |
Remove leading underscores from specifiers, they are reserved.
Originally committed as revision 9461 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/bswap.h')
-rw-r--r-- | libavutil/bswap.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/bswap.h b/libavutil/bswap.h index 3b6c2c0407..211a15c0ab 100644 --- a/libavutil/bswap.h +++ b/libavutil/bswap.h @@ -23,8 +23,8 @@ * byte swap. */ -#ifndef __BSWAP_H__ -#define __BSWAP_H__ +#ifndef BSWAP_H +#define BSWAP_H #include <stdint.h> #include "common.h" @@ -138,4 +138,4 @@ static inline uint64_t bswap_64(uint64_t x) #define le2me_64(x) (x) #endif -#endif /* __BSWAP_H__ */ +#endif /* BSWAP_H */ |