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

Diff for /src/include/stdio.h between version 1.53 and 1.54

version 1.53, 2016/09/09 18:12:37 version 1.54, 2020/09/11 17:56:41
Line 204 
Line 204 
 __BEGIN_DECLS  __BEGIN_DECLS
 void     clearerr(FILE *);  void     clearerr(FILE *);
 #if __POSIX_VISIBLE >= 200809  #if __POSIX_VISIBLE >= 200809
 int      dprintf(int, const char * __restrict, ...);  int      dprintf(int, const char * __restrict, ...)
                   __attribute__((__format__ (printf, 2, 3)))
                   __attribute__((__nonnull__ (2)));
 #endif  #endif
 int      fclose(FILE *);  int      fclose(FILE *);
 int      feof(FILE *);  int      feof(FILE *);
Line 266 
Line 268 
 int      vprintf(const char *, __va_list);  int      vprintf(const char *, __va_list);
 int      vsprintf(char *, const char *, __va_list);  int      vsprintf(char *, const char *, __va_list);
 #if __POSIX_VISIBLE >= 200809  #if __POSIX_VISIBLE >= 200809
 int      vdprintf(int, const char * __restrict, __va_list);  int      vdprintf(int, const char * __restrict, __va_list)
                   __attribute__((__format__ (printf, 2, 0)))
                   __attribute__((__nonnull__ (2)));
 #endif  #endif
   
 #if __ISO_C_VISIBLE >= 1999 || __XPG_VISIBLE >= 500 || __BSD_VISIBLE  #if __ISO_C_VISIBLE >= 1999 || __XPG_VISIBLE >= 500 || __BSD_VISIBLE

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