comparison bswap.h @ 353:05c01c4c1ca9 libavutil

Remove leading underscores from specifiers, they are reserved.
author diego
date Mon, 02 Jul 2007 17:00:04 +0000
parents f21d1907d47c
children d0f3bb6e367e
comparison
equal deleted inserted replaced
352:abe3009bd88f 353:05c01c4c1ca9
21 /** 21 /**
22 * @file bswap.h 22 * @file bswap.h
23 * byte swap. 23 * byte swap.
24 */ 24 */
25 25
26 #ifndef __BSWAP_H__ 26 #ifndef BSWAP_H
27 #define __BSWAP_H__ 27 #define BSWAP_H
28 28
29 #include <stdint.h> 29 #include <stdint.h>
30 #include "common.h" 30 #include "common.h"
31 31
32 #ifdef HAVE_BYTESWAP_H 32 #ifdef HAVE_BYTESWAP_H
136 #define le2me_16(x) (x) 136 #define le2me_16(x) (x)
137 #define le2me_32(x) (x) 137 #define le2me_32(x) (x)
138 #define le2me_64(x) (x) 138 #define le2me_64(x) (x)
139 #endif 139 #endif
140 140
141 #endif /* __BSWAP_H__ */ 141 #endif /* BSWAP_H */