123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- #ifndef CO_GCC_H_
- #define CO_GCC_H_
- #ifdef _lint
- #ifdef __cplusplus
- extern "C" {
- #endif
- void __lint_assert( int );
- typedef char *__builtin_va_list;
- __builtin_va_list __lint_init_va(...);
- void __builtin_va_end( __builtin_va_list );
-
- #if defined(__cplusplus)
- # include "lint_cppmac.h"
- #else
- # include "lint_cmac.h"
- #endif
- #define LINT_CO_GCC_H_GCC_VERSION ( __GNUC__ * 10000 + \
- __GNUC_MINOR__ * 100 + \
- __GNUC_PATCHLEVEL__ )
- #if ( LINT_CO_GCC_H_GCC_VERSION >= 30000 && \
- LINT_CO_GCC_H_GCC_VERSION < 40100 )
- # define __STDC__ 1
- #endif
- #if !__cplusplus && !__STRICT_ANSI__ && __STDC_VERSION__ < 199901L
- #endif
- #if LINT_CO_GCC_H_GCC_VERSION >= 40300
- # define __COUNTER__ __lint__COUNTER__
- #endif
- #ifdef __cplusplus
- }
- #endif
- #if _lint >= 909
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #else
-
-
- #endif
- #endif
- #endif
|