[BACK]Return to stand.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / lib / libsa

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/lib/libsa/stand.h between version 1.33 and 1.33.2.2

version 1.33, 1999/09/09 15:52:40 version 1.33.2.2, 2001/04/21 17:46:34
Line 75 
Line 75 
 #define NULL    0  #define NULL    0
 #endif  #endif
   
   #ifdef LIBSA_RENAME_PRINTF
   #define getchar         libsa_getchar
   #define gets            libsa_gets
   #define printf          libsa_printf
   #define putchar         libsa_putchar
   #define sprintf         libsa_sprintf
   #define vprintf         libsa_vprintf
   #define vsprintf        libsa_vsprintf
   #endif
 #ifdef LIBSA_USE_MEMSET  #ifdef LIBSA_USE_MEMSET
 #define bzero(s, l)     memset(s, 0, l)  #define bzero(s, l)     memset(s, 0, l)
 #endif  #endif
Line 199  extern struct open_file files[];
Line 208  extern struct open_file files[];
 #endif  #endif
 #define F_NODEV         0x0008  /* network open - no device */  #define F_NODEV         0x0008  /* network open - no device */
   
 #define isupper(c)      ((c) >= 'A' && (c) <= 'Z')  
 #define tolower(c)      ((c) - 'A' + 'a')  
 #define isspace(c)      ((c) == ' ' || (c) == '\t')  
 #define isdigit(c)      ((c) >= '0' && (c) <= '9')  
   
 int     devopen __P((struct open_file *, const char *, char **));  int     devopen __P((struct open_file *, const char *, char **));
 #ifdef HEAP_VARIABLE  #ifdef HEAP_VARIABLE
 void    setheap __P((void *, void *));  void    setheap __P((void *, void *));
Line 237  ssize_t read __P((int, void *, size_t));
Line 241  ssize_t read __P((int, void *, size_t));
 ssize_t write __P((int, void *, size_t));  ssize_t write __P((int, void *, size_t));
 off_t   lseek __P((int, off_t, int));  off_t   lseek __P((int, off_t, int));
 int     ioctl __P((int, u_long, char *));  int     ioctl __P((int, u_long, char *));
   int     stat __P((const char *, struct stat *));
   int     fstat __P((int, struct stat *));
   
 extern int opterr, optind, optopt, optreset;  extern int opterr, optind, optopt, optreset;
 extern char *optarg;  extern char *optarg;

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.33.2.2

CVSweb <webmaster@jp.NetBSD.org>