Changeset 494 for trunk/src/emx/include/stdlib.h
- Timestamp:
- Aug 1, 2003, 8:42:12 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/stdlib.h
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r493 r494 79 79 int (*)(__const__ void *, __const__ void *)); 80 80 div_t div (int, int); 81 ldiv_t ldiv (long, long); 81 82 void exit (int) __attribute__ ((__noreturn__)); 82 83 char *getenv (__const__ char *); 83 ldiv_t ldiv (long, long);84 84 int mblen (__const__ char *, size_t); 85 85 size_t mbstowcs (wchar_t *, __const__ char *, size_t); … … 149 149 extern char **environ; 150 150 151 extern __const__ char * __const__ sys_errlist[];152 extern __const__ int sys_nerr;153 154 151 extern __const__ unsigned char _osminor; 155 152 extern __const__ unsigned char _osmajor; … … 159 156 160 157 unsigned alarm (unsigned); 161 int 158 int brk(const void *); 162 159 int chdir (__const__ char *); 163 160 char *gcvt (double, int, char *); … … 169 166 int putenv (__const__ char *); 170 167 int rmdir (__const__ char *); 171 void 168 void *sbrk(intptr_t); 172 169 unsigned sleep (unsigned); 173 170 void swab (__const__ void *, void *, size_t); … … 181 178 void srandom (unsigned); /* BSD */ 182 179 180 char *itoa (int, char *, int); 181 char *ltoa (long, char *, int); 182 char *ultoa (unsigned long, char *, int); 183 char *lltoa (long long, char *, int); 184 char *ulltoa (unsigned long long, char *, int); 185 183 186 #endif 184 187 … … 188 191 189 192 extern char **_environ; 190 extern __const__ char * __const__ _sys_errlist[];191 extern __const__ int _sys_nerr;192 193 193 194 unsigned _alarm (unsigned); 194 int 195 int _brk(const void *); 195 196 int _chdir (__const__ char *); 196 197 char *_gcvt (double, int, char *); … … 201 202 int _putenv (__const__ char *); 202 203 int _rmdir (__const__ char *); 203 void 204 void *_sbrk(intptr_t); 204 205 unsigned _sleep (unsigned); 205 206 void _swab (__const__ void *, void *, size_t); … … 217 218 void _exit (int) __attribute__ ((__noreturn__)); 218 219 int _filesys (__const__ char *, char *, size_t); 219 int _fncmp (__const__ unsigned char *, __const__ unsigned char *);220 220 char **_fnexplode (__const__ char *); 221 221 void _fnexplodefree (char **); … … 239 239 _lldiv_t _lldiv (long long, long long); 240 240 char *_lltoa (long long, char *, int); 241 _uldiv_t _uldiv (unsigned long, unsigned long); 242 _ulldiv_t _ulldiv (unsigned long long, unsigned long long); 243 char *_itoa (int, char *, int); 241 244 char *_ltoa (long, char *, int); 245 char *_ultoa (unsigned long, char *, int); 246 char *_lltoa (long long, char *, int); 247 char *_ulltoa (unsigned long long, char *, int); 242 248 void _makepath (char *, __const__ char *, __const__ char *, 243 249 __const__ char *, __const__ char *); … … 258 264 unsigned long long _strtoull (__const__ char *, char **, int); 259 265 char _swchar (void); 260 _uldiv_t _uldiv (unsigned long, unsigned long);261 _ulldiv_t _ulldiv (unsigned long long, unsigned long long);262 char *_ulltoa (unsigned long long, char *, int);263 char *_ultoa (unsigned long, char *, int);264 266 void _wildcard (int *, char ***); 265 267 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.