[BACK]Return to stdio.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / include

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/include/stdio.h between version 1.66 and 1.66.2.1.2.1

version 1.66, 2006/11/22 17:23:24 version 1.66.2.1.2.1, 2007/09/03 07:01:08
Line 157  __END_DECLS
Line 157  __END_DECLS
 #define __SOFF  0x1000          /* set iff _offset is in fact correct */  #define __SOFF  0x1000          /* set iff _offset is in fact correct */
 #define __SMOD  0x2000          /* true => fgetln modified _p text */  #define __SMOD  0x2000          /* true => fgetln modified _p text */
 #define __SALC  0x4000          /* allocate string space dynamically */  #define __SALC  0x4000          /* allocate string space dynamically */
 #define __SAFE  0x8000          /* don't call signal-unsafe functions */  
   
 /*  /*
  * The following three definitions are for ANSI C, which took them   * The following three definitions are for ANSI C, which took them
Line 316  __END_DECLS
Line 315  __END_DECLS
 /*  /*
  * Functions defined in ISO XPG4.2, ISO C99, POSIX 1003.1-2001 or later.   * Functions defined in ISO XPG4.2, ISO C99, POSIX 1003.1-2001 or later.
  */   */
 #if !defined(_ANSI_SOURCE) && !defined(_POSIX_C_SOURCE) && \  #if ((__STDC_VERSION__ - 0) >= 199901L) || \
     !defined(_XOPEN_SOURCE) || \  
     ((__STDC_VERSION__ - 0) >= 199901L) || \  
     ((_POSIX_C_SOURCE - 0) >= 200112L) || \      ((_POSIX_C_SOURCE - 0) >= 200112L) || \
     (defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)) || \      (defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)) || \
     ((_XOPEN_SOURCE - 0) >= 500) || \      ((_XOPEN_SOURCE - 0) >= 500) || \
Line 479  static __inline int __sputc(int _c, FILE
Line 476  static __inline int __sputc(int _c, FILE
 #define putchar_unlocked(x)     putc_unlocked(x, stdout)  #define putchar_unlocked(x)     putc_unlocked(x, stdout)
 #endif /* _POSIX_C_SOURCE >= 199506 || _XOPEN_SOURCE >= 500 || _REENTRANT... */  #endif /* _POSIX_C_SOURCE >= 199506 || _XOPEN_SOURCE >= 500 || _REENTRANT... */
   
   #if _FORTIFY_SOURCE > 0
   #include <ssp/stdio.h>
   #endif
   
 #endif /* _STDIO_H_ */  #endif /* _STDIO_H_ */

Legend:
Removed from v.1.66  
changed lines
  Added in v.1.66.2.1.2.1

CVSweb <webmaster@jp.NetBSD.org>