1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2025-02-12 20:24:05 +00:00

Do not depend on config.h in public headers

config.h is not installed with libcpuid, and even if it were HAVE_CONFIG_H could
not be used to check for its availability.
This commit is contained in:
Orivej Desh 2018-06-23 17:56:52 +00:00
parent 05c8078d25
commit 1331b6e9b8

View file

@ -32,19 +32,15 @@
#ifndef __LIBCPUID_TYPES_H__
#define __LIBCPUID_TYPES_H__
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#if defined(HAVE_STDINT_H)
#if !defined(_MSC_VER) || _MSC_VER >= 1600
# include <stdint.h>
#else
/* we have to provide our own: */
# if !defined(HAVE_INT32_T) && !defined(__int32_t_defined)
# if !defined(__int32_t_defined)
typedef int int32_t;
# endif
# if !defined(HAVE_UINT32_T) && !defined(__uint32_t_defined)
# if !defined(__uint32_t_defined)
typedef unsigned uint32_t;
# endif