diff options
author | scuri <scuri> | 2008-10-17 06:10:15 +0000 |
---|---|---|
committer | scuri <scuri> | 2008-10-17 06:10:15 +0000 |
commit | 5a422aba704c375a307a902bafe658342e209906 (patch) | |
tree | 5005011e086bb863d8fb587ad3319bbec59b2447 /src/libexif/_stdint.h |
First commit - moving from LuaForge to SourceForge
Diffstat (limited to 'src/libexif/_stdint.h')
-rw-r--r-- | src/libexif/_stdint.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/libexif/_stdint.h b/src/libexif/_stdint.h new file mode 100644 index 0000000..401189b --- /dev/null +++ b/src/libexif/_stdint.h @@ -0,0 +1,19 @@ + +#ifndef __STDINT_H +#define __STDINT_H + +#ifndef __int8_t_defined +#define __int8_t_defined +typedef signed char int8_t; +typedef short int16_t; +typedef int int32_t; +#endif + +typedef unsigned char uint8_t; +typedef unsigned short uint16_t; +#ifndef __uint32_t_defined +#define __uint32_t_defined +typedef unsigned int uint32_t; +#endif + +#endif |