00001
00002 #ifndef _RPM_RPMINTS_H
00003 #define _RPM_RPMINTS_H
00004
00005
00006
00007 #define __RPM_USES_STDINT_H__ 1
00008
00009
00010 #ifdef __RPM_USES_STDINT_H__
00011 #include <stdint.h>
00012 #endif
00013
00014 #ifdef __cplusplus
00015 extern "C" {
00016 #endif
00017
00018 typedef int32_t int_32;
00019 typedef int16_t int_16;
00020 typedef int8_t int_8;
00022 typedef uint32_t uint_32;
00023 typedef uint16_t uint_16;
00024 typedef uint8_t uint_8;
00026 #ifdef __cplusplus
00027 }
00028 #endif
00029
00030 #endif