blob: ae4507b0b347da53083d2310c63240c9beea5df6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef _RPM_RPMINTS_H
#define _RPM_RPMINTS_H
/* @cond NODOXYGEN */
/* if rpm uses stdint.h */
#undef __RPM_USES_STDINT_H__
/* @endcond */
#ifdef __RPM_USES_STDINT_H__
#include <stdint.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
typedef int32_t int_32; /*!< @deprecated Provided for backward compatibility only. Don't use in new code. */
typedef int16_t int_16; /*!< @deprecated Provided for backward compatibility only. Don't use in new code. */
typedef int8_t int_8; /*!< @deprecated Provided for backward compatibility only. Don't use in new code. */
typedef uint32_t uint_32; /*!< @deprecated Provided for backward compatibility only. Don't use in new code. */
typedef uint16_t uint_16; /*!< @deprecated Provided for backward compatibility only. Don't use in new code. */
typedef uint8_t uint_8; /*!< @deprecated Provided for backward compatibility only. Don't use in new code. */
#ifdef __cplusplus
}
#endif
#endif
|