[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.53 and 1.53.2.1

version 1.53, 2003/08/07 09:44:11 version 1.53.2.1, 2004/07/02 18:13:45
Line 438  static __inline int __sputc(int _c, FILE
Line 438  static __inline int __sputc(int _c, FILE
 #define __sclearerr(p)  ((void)((p)->_flags &= ~(__SERR|__SEOF)))  #define __sclearerr(p)  ((void)((p)->_flags &= ~(__SERR|__SEOF)))
 #define __sfileno(p)    ((p)->_file)  #define __sfileno(p)    ((p)->_file)
   
 #ifndef lint  #ifndef __lint__
 #if !defined(_REENTRANT) && !defined(_PTHREADS)  #if !defined(_REENTRANT) && !defined(_PTHREADS)
 #define feof(p)         __sfeof(p)  #define feof(p)         __sfeof(p)
 #define ferror(p)       __sferror(p)  #define ferror(p)       __sferror(p)
Line 447  static __inline int __sputc(int _c, FILE
Line 447  static __inline int __sputc(int _c, FILE
 #define getc(fp)        __sgetc(fp)  #define getc(fp)        __sgetc(fp)
 #define putc(x, fp)     __sputc(x, fp)  #define putc(x, fp)     __sputc(x, fp)
 #endif /* !_REENTRANT && !_PTHREADS */  #endif /* !_REENTRANT && !_PTHREADS */
 #endif /* lint */  #endif /* __lint__ */
   
 #define getchar()       getc(stdin)  #define getchar()       getc(stdin)
 #define putchar(x)      putc(x, stdout)  #define putchar(x)      putc(x, stdout)

Legend:
Removed from v.1.53  
changed lines
  Added in v.1.53.2.1

CVSweb <webmaster@jp.NetBSD.org>