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

Diff for /src/include/stdlib.h between version 1.23 and 1.24

version 1.23, 2002/12/02 15:38:54 version 1.24, 2002/12/03 20:24:29
Line 173 
Line 173 
   
 void     cfree(void *);  void     cfree(void *);
   
   #ifndef _GETOPT_DEFINED_
   #define _GETOPT_DEFINED_
 int      getopt(int, char * const *, const char *);  int      getopt(int, char * const *, const char *);
 extern   char *optarg;                  /* getopt(3) external variables */  extern   char *optarg;                  /* getopt(3) external variables */
 extern   int opterr;  extern   int opterr;
Line 181 
Line 183 
 extern   int optreset;  extern   int optreset;
 int      getsubopt(char **, char * const *, char **);  int      getsubopt(char **, char * const *, char **);
 extern   char *suboptarg;               /* getsubopt(3) external variable */  extern   char *suboptarg;               /* getsubopt(3) external variable */
   #endif /* _GETOPT_DEFINED_ */
   
 int      heapsort(void *, size_t, size_t, int (*)(const void *, const void *));  int      heapsort(void *, size_t, size_t, int (*)(const void *, const void *));
 int      mergesort(void *, size_t, size_t, int (*)(const void *, const void *));  int      mergesort(void *, size_t, size_t, int (*)(const void *, const void *));

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