[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.46 and 1.48

version 1.46, 2002/11/30 03:04:44 version 1.48, 2003/01/18 10:32:11
Line 251  FILE *tmpfile __P((void));
Line 251  FILE *tmpfile __P((void));
 int      ungetc __P((int, FILE *));  int      ungetc __P((int, FILE *));
 int      vfprintf __P((FILE * __restrict, const char * __restrict,  int      vfprintf __P((FILE * __restrict, const char * __restrict,
             _BSD_VA_LIST_));              _BSD_VA_LIST_));
   int      vfprintf_unlocked __P((FILE * __restrict, const char * __restrict,
               _BSD_VA_LIST_));
 int      vprintf __P((const char * __restrict, _BSD_VA_LIST_));  int      vprintf __P((const char * __restrict, _BSD_VA_LIST_));
   
 #ifndef __AUDIT__  #ifndef __AUDIT__
 char    *gets __P((char *));  char    *gets __P((char *));
 int      sprintf __P((char * __restrict, const char * __restrict, ...));  int      sprintf __P((char * __restrict, const char * __restrict, ...));
 char    *tmpnam __P((char *));  char    *tmpnam __P((char *));
 int      vsprintf __P((char * __resitrct, const char * __restrict,  int      vsprintf __P((char * __restrict, const char * __restrict,
             _BSD_VA_LIST_));              _BSD_VA_LIST_));
 #endif  #endif
   
Line 294  __END_DECLS
Line 296  __END_DECLS
      !defined(_XOPEN_SOURCE)) || (_POSIX_C_SOURCE - 0) >= 199506L || \       !defined(_XOPEN_SOURCE)) || (_POSIX_C_SOURCE - 0) >= 199506L || \
     (_XOPEN_SOURCE - 0) >= 500 || defined(_REENTRANT)      (_XOPEN_SOURCE - 0) >= 500 || defined(_REENTRANT)
 __BEGIN_DECLS  __BEGIN_DECLS
 #if 0 /* not yet */  
 void    flockfile __P((FILE *));  void    flockfile __P((FILE *));
 int     ftrylockfile __P((FILE *));  int     ftrylockfile __P((FILE *));
 void    funlockfile __P((FILE *));  void    funlockfile __P((FILE *));
 #endif /* 0 */  
 int     getc_unlocked __P((FILE *));  int     getc_unlocked __P((FILE *));
 int     getchar_unlocked __P((void));  int     getchar_unlocked __P((void));
 int     putc_unlocked __P((int, FILE *));  int     putc_unlocked __P((int, FILE *));

Legend:
Removed from v.1.46  
changed lines
  Added in v.1.48

CVSweb <webmaster@jp.NetBSD.org>