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

Diff for /src/include/stdio.h between version 1.14 and 1.15

version 1.14, 2000/03/04 17:16:02 version 1.15, 2000/12/06 17:18:42
Line 303 
Line 303 
 #if !defined (_ANSI_SOURCE) && !defined(_POSIX_SOURCE)  #if !defined (_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
 __BEGIN_DECLS  __BEGIN_DECLS
 int      asprintf __P((char **, const char *, ...))  int      asprintf __P((char **, const char *, ...))
                 __attribute__((format (printf, 2, 3)));                  __attribute__((__format__ (printf, 2, 3)));
 char    *fgetln __P((FILE *, size_t *));  char    *fgetln __P((FILE *, size_t *));
 int      fpurge __P((FILE *));  int      fpurge __P((FILE *));
 int      getw __P((FILE *));  int      getw __P((FILE *));
Line 314 
Line 314 
 int      setlinebuf __P((FILE *));  int      setlinebuf __P((FILE *));
 char    *tempnam __P((const char *, const char *));  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      vasprintf __P((char **, const char *, _BSD_VA_LIST_))  int      vasprintf __P((char **, const char *, _BSD_VA_LIST_))
                 __attribute__((format (printf, 2, 0)));                  __attribute__((__format__ (printf, 2, 0)));
 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)));
 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.14  
changed lines
  Added in v.1.15