=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/include/ctype.h,v retrieving revision 1.15 retrieving revision 1.16 diff -c -r1.15 -r1.16 *** src/include/ctype.h 2004/01/13 15:47:24 1.15 --- src/include/ctype.h 2004/01/15 20:01:27 1.16 *************** *** 1,4 **** ! /* $OpenBSD: ctype.h,v 1.15 2004/01/13 15:47:24 millert Exp $ */ /* $NetBSD: ctype.h,v 1.14 1994/10/26 00:55:47 cgd Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: ctype.h,v 1.16 2004/01/15 20:01:27 millert Exp $ */ /* $NetBSD: ctype.h,v 1.14 1994/10/26 00:55:47 cgd Exp $ */ /* *************** *** 63,69 **** #define __CTYPE_INLINE static inline #endif ! #if defined(__GNUC__) || defined(_ANSI_LIBRARY) int isalnum(int); int isalpha(int); int iscntrl(int); --- 63,69 ---- #define __CTYPE_INLINE static inline #endif ! #if defined(__GNUC__) || defined(_ANSI_LIBRARY) || defined(lint) int isalnum(int); int isalpha(int); int iscntrl(int); *************** *** 86,94 **** int _toupper(int); #endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */ ! #endif /* __GNUC__ || _ANSI_LIBRARY */ ! #ifndef _ANSI_LIBRARY __CTYPE_INLINE int isalnum(int c) { --- 86,94 ---- int _toupper(int); #endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */ ! #endif /* __GNUC__ || _ANSI_LIBRARY || lint */ ! #if !defined(_ANSI_LIBRARY) && !defined(lint) __CTYPE_INLINE int isalnum(int c) { *************** *** 186,192 **** } #endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */ ! #endif /* !_ANSI_LIBRARY */ __END_DECLS --- 186,192 ---- } #endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */ ! #endif /* !_ANSI_LIBRARY && !lint */ __END_DECLS