30 lines
975 B
C
30 lines
975 B
C
#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
|