Try two on the preprocessing logic.
Reviewed by: ru
This commit is contained in:
parent
fb63feef6f
commit
9f9bd82e15
@ -82,7 +82,7 @@ typedef struct {
|
||||
} __va_list;
|
||||
#define _BSD_VA_LIST_ __va_list /* va_list */
|
||||
#endif /* post GCC 2.95 */
|
||||
#if defined __GNUC__
|
||||
#ifdef __GNUC__
|
||||
typedef _BSD_VA_LIST_ __gnuc_va_list; /* compatibility w/GNU headers*/
|
||||
#endif
|
||||
|
||||
|
@ -77,7 +77,7 @@
|
||||
#else
|
||||
#define _BSD_VA_LIST_ char * /* va_list */
|
||||
#endif /* post GCC 2.95 */
|
||||
#if defined __GNUC__
|
||||
#ifdef __GNUC__
|
||||
typedef _BSD_VA_LIST_ __gnuc_va_list; /* compatibility w/GNU headers*/
|
||||
#endif
|
||||
|
||||
|
@ -71,12 +71,12 @@
|
||||
#define _BSD_OFF_T_ __int64_t /* file offset */
|
||||
#define _BSD_PID_T_ int /* process [group] */
|
||||
|
||||
#if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 2 && __GNUC_MINOR__ > 95)
|
||||
#if defined(__GNUC__) && (__GNUC__ > 2 || __GNUC__ == 2 && __GNUC_MINOR__ > 95)
|
||||
#define _BSD_VA_LIST_ __builtin_va_list /* internally known to gcc */
|
||||
#else
|
||||
#define _BSD_VA_LIST_ char * /* va_list */
|
||||
#endif /* post GCC 2.95 */
|
||||
#if defined __GNUC__
|
||||
#ifdef __GNUC__
|
||||
typedef _BSD_VA_LIST_ __gnuc_va_list; /* compatibility w/GNU headers*/
|
||||
#endif
|
||||
|
||||
|
@ -84,7 +84,7 @@ typedef struct {
|
||||
#define _BSD_VA_LIST_ __va_list /* va_list */
|
||||
#endif /* post GCC 2.95 */
|
||||
#ifdef __GNUC__
|
||||
typedef _BSD_VA_LIST_ __gnuc_va_list; /* compatibility w/GNU headers*/
|
||||
typedef _BSD_VA_LIST_ __gnuc_va_list; /* compatibility w/GNU headers*/
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
@ -77,7 +77,7 @@
|
||||
#else
|
||||
#define _BSD_VA_LIST_ char * /* va_list */
|
||||
#endif /* post GCC 2.95 */
|
||||
#if defined __GNUC__
|
||||
#ifdef __GNUC__
|
||||
typedef _BSD_VA_LIST_ __gnuc_va_list; /* compatibility w/GNU headers*/
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user