mirror of
https://github.com/anrieff/libcpuid
synced 2024-12-16 16:35:45 +00:00
Merge pull request #114 from orivej/stdint
Do not depend on config.h in public headers
This commit is contained in:
commit
aae06ecb7a
1 changed files with 3 additions and 7 deletions
|
@ -32,19 +32,15 @@
|
||||||
#ifndef __LIBCPUID_TYPES_H__
|
#ifndef __LIBCPUID_TYPES_H__
|
||||||
#define __LIBCPUID_TYPES_H__
|
#define __LIBCPUID_TYPES_H__
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
#if !defined(_MSC_VER) || _MSC_VER >= 1600
|
||||||
# include "config.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(HAVE_STDINT_H)
|
|
||||||
# include <stdint.h>
|
# include <stdint.h>
|
||||||
#else
|
#else
|
||||||
/* we have to provide our own: */
|
/* we have to provide our own: */
|
||||||
# if !defined(HAVE_INT32_T) && !defined(__int32_t_defined)
|
# if !defined(__int32_t_defined)
|
||||||
typedef int int32_t;
|
typedef int int32_t;
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
# if !defined(HAVE_UINT32_T) && !defined(__uint32_t_defined)
|
# if !defined(__uint32_t_defined)
|
||||||
typedef unsigned uint32_t;
|
typedef unsigned uint32_t;
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue