diff options
Diffstat (limited to 'data/raop-play/linuxint.h')
-rw-r--r-- | data/raop-play/linuxint.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/data/raop-play/linuxint.h b/data/raop-play/linuxint.h new file mode 100644 index 000000000..fc5d48252 --- /dev/null +++ b/data/raop-play/linuxint.h @@ -0,0 +1,16 @@ +#ifndef LINUXINT_H_ +#define LINUXINT_H_ + +#include <stdint.h> + +typedef int8_t __s8; +typedef int16_t __s16; +typedef int32_t __s32; +typedef int64_t __s64; + +typedef uint8_t __u8; +typedef uint16_t __u16; +typedef uint32_t __u32; +typedef uint64_t __u64; + +#endif/*LINUXINT_H_*/ |