android-platform-a71/external/libexif/contrib/watcom/_stdint.h

14 lines
276 B
C
Raw Permalink Normal View History

2024-11-30 07:52:24 +00:00
#ifndef __STDINT_H
#define __STDINT_H
#include <sys/types.h>
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned long uint32_t;
typedef signed char int8_t;
typedef signed short int16_t;
typedef signed long int32_t;
#endif