From 9a48c873869861582640ed12bfb8ed4ba8289dab Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Wed, 7 Jan 2015 22:22:52 +0100 Subject: [PATCH] Don't attempt to pull in directly. is not a standard header. Instead, we'd better pull in a common header like . It is very likely that such a header already provides the necessary bits. --- include/cdefs-compat.h | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/include/cdefs-compat.h b/include/cdefs-compat.h index 173bc91..7c997c9 100644 --- a/include/cdefs-compat.h +++ b/include/cdefs-compat.h @@ -1,9 +1,11 @@ #ifndef _CDEFS_COMPAT_H_ #define _CDEFS_COMPAT_H_ -#ifndef _WIN32 -#include "sys/cdefs.h" -#else /* _WIN32 */ +/* + * We cannot be certain that this operating system has . + * Instead, include a header file that is likely to pull in this header. + */ +#include #if defined(__cplusplus) #define __BEGIN_DECLS extern "C" { @@ -13,13 +15,6 @@ #define __END_DECLS #endif -#define _SYS_CDEFS_H_ - -#endif /* _WIN32 */ - - - - #ifdef __GNUC__ #ifndef __strong_reference #ifdef __APPLE__