[BACK]Return to stdio.h CVS log [TXT][DIR] Up to [local] / prex-old / usr / include

Diff for /prex-old/usr/include/stdio.h between version 1.1.1.1 and 1.1.1.1.2.1

version 1.1.1.1, 2008/06/03 10:38:47 version 1.1.1.1.2.1, 2008/08/13 17:12:36
Line 38 
Line 38 
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/cdefs.h>  #include <sys/cdefs.h>
   
 #include <machine/ansi.h>  #if !defined(_SIZE_T)
 #ifdef  _BSD_SIZE_T_  #define _SIZE_T
 typedef _BSD_SIZE_T_    size_t;  typedef unsigned int    size_t;         /* size of something in bytes */
 #undef  _BSD_SIZE_T_  
 #endif  #endif
   
 #include <sys/null.h>  #include <machine/stdarg.h>
   
   #ifndef NULL
   #if !defined(__cplusplus)
   #define NULL    ((void *)0)
   #else
   #define NULL    0
   #endif
   #endif
   
 typedef off_t fpos_t;  typedef off_t fpos_t;
   
 #define _FSTDIO                 /* Define for new stdio with functions. */  #define _FSTDIO                 /* Define for new stdio with functions. */
Line 216 
Line 223 
 FILE    *tmpfile(void);  FILE    *tmpfile(void);
 char    *tmpnam(char *);  char    *tmpnam(char *);
 int      ungetc(int, FILE *);  int      ungetc(int, FILE *);
 int      vfprintf(FILE *, const char *, _BSD_VA_LIST_);  int      vfprintf(FILE *, const char *, va_list);
 int      vprintf(const char *, _BSD_VA_LIST_);  int      vprintf(const char *, va_list);
 int      vsprintf(char *, const char *, _BSD_VA_LIST_);  int      vsprintf(char *, const char *, va_list);
 __END_DECLS  __END_DECLS
   
 /*  /*
Line 249 
Line 256 
 int      setlinebuf(FILE *);  int      setlinebuf(FILE *);
 char    *tempnam(const char *, const char *);  char    *tempnam(const char *, const char *);
 int      snprintf(char *, size_t, const char *, ...);  int      snprintf(char *, size_t, const char *, ...);
 int      vsnprintf(char *, size_t, const char *, _BSD_VA_LIST_);  int      vsnprintf(char *, size_t, const char *, va_list);
 int      vscanf(const char *, _BSD_VA_LIST_);  int      vscanf(const char *, va_list);
 int      vsscanf(const char *, const char *, _BSD_VA_LIST_);  int      vsscanf(const char *, const char *, va_list);
 FILE    *zopen(const char *, const char *, int);  FILE    *zopen(const char *, const char *, int);
 __END_DECLS  __END_DECLS
   
Line 269 
Line 276 
  */   */
 __BEGIN_DECLS  __BEGIN_DECLS
 int     __srget(FILE *);  int     __srget(FILE *);
 int     __svfscanf(FILE *, const char *, _BSD_VA_LIST_);  int     __svfscanf(FILE *, const char *, va_list);
 int     __swbuf(int, FILE *);  int     __swbuf(int, FILE *);
 __END_DECLS  __END_DECLS
   

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.1.2.1

CVSweb