[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.23 and 1.26

version 1.23, 1998/05/11 15:49:15 version 1.26, 1998/07/30 00:44:16
Line 236  long  ftell __P((FILE *));
Line 236  long  ftell __P((FILE *));
 size_t   fwrite __P((const void *, size_t, size_t, FILE *));  size_t   fwrite __P((const void *, size_t, size_t, FILE *));
 int      getc __P((FILE *));  int      getc __P((FILE *));
 int      getchar __P((void));  int      getchar __P((void));
 char    *gets __P((char *));  
 void     perror __P((const char *));  void     perror __P((const char *));
 int      printf __P((const char *, ...));  int      printf __P((const char *, ...));
 int      putc __P((int, FILE *));  int      putc __P((int, FILE *));
Line 247  void  rewind __P((FILE *));
Line 246  void  rewind __P((FILE *));
 int      scanf __P((const char *, ...));  int      scanf __P((const char *, ...));
 void     setbuf __P((FILE *, char *));  void     setbuf __P((FILE *, char *));
 int      setvbuf __P((FILE *, char *, int, size_t));  int      setvbuf __P((FILE *, char *, int, size_t));
 int      sprintf __P((char *, const char *, ...));  
 int      sscanf __P((const char *, const char *, ...));  int      sscanf __P((const char *, const char *, ...));
 FILE    *tmpfile __P((void));  FILE    *tmpfile __P((void));
 char    *tmpnam __P((char *));  
 int      ungetc __P((int, FILE *));  int      ungetc __P((int, FILE *));
 int      vfprintf __P((FILE *, const char *, _BSD_VA_LIST_));  int      vfprintf __P((FILE *, const char *, _BSD_VA_LIST_));
 int      vprintf __P((const char *, _BSD_VA_LIST_));  int      vprintf __P((const char *, _BSD_VA_LIST_));
   
   #ifndef __AUDIT__
   char    *gets __P((char *));
   int      sprintf __P((char *, const char *, ...));
   char    *tmpnam __P((char *));
 int      vsprintf __P((char *, const char *, _BSD_VA_LIST_));  int      vsprintf __P((char *, const char *, _BSD_VA_LIST_));
   #endif
   
 #if defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE)  #if defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE)
 int      rename  __P((const char *, const char *)) __RENAME(__posix_rename);  int      rename  __P((const char *, const char *)) __RENAME(__posix_rename);
Line 307  __END_DECLS
Line 310  __END_DECLS
 __BEGIN_DECLS  __BEGIN_DECLS
 int      getw __P((FILE *));  int      getw __P((FILE *));
 int      putw __P((int, FILE *));  int      putw __P((int, FILE *));
 char    *tempnam __P((const char *, const char *));  
 int      snprintf __P((char *, size_t, const char *, ...))  int      snprintf __P((char *, size_t, const char *, ...))
                 __attribute__((format (printf, 3, 4)));              __attribute__((__format__(__printf__, 3, 4)));
 int      vsnprintf __P((char *, size_t, const char *, _BSD_VA_LIST_))  int      vsnprintf __P((char *, size_t, const char *, _BSD_VA_LIST_))
                 __attribute__((format (printf, 3, 0)));              __attribute__((__format__(__printf__, 3, 0)));
   
   #ifndef __AUDIT__
   char    *tempnam __P((const char *, const char *));
   #endif
 __END_DECLS  __END_DECLS
 #endif  #endif
   
Line 326  int  fpurge __P((FILE *));
Line 332  int  fpurge __P((FILE *));
 void     setbuffer __P((FILE *, char *, int));  void     setbuffer __P((FILE *, char *, int));
 int      setlinebuf __P((FILE *));  int      setlinebuf __P((FILE *));
 int      vscanf __P((const char *, _BSD_VA_LIST_))  int      vscanf __P((const char *, _BSD_VA_LIST_))
                 __attribute__((format (scanf, 1, 0)));              __attribute__((__format__(__scanf__, 1, 0)));
 int      vsscanf __P((const char *, const char *, _BSD_VA_LIST_))  int      vsscanf __P((const char *, const char *, _BSD_VA_LIST_))
                 __attribute__((format (scanf, 2, 0)));              __attribute__((__format__(__scanf__, 2, 0)));
 __END_DECLS  __END_DECLS
   
 /*  /*

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.26

CVSweb <webmaster@jp.NetBSD.org>