Changeset 75c430e3 in mainline for uspace/lib/c/include/stdlib.h
- Timestamp:
- 2018-06-19T11:48:03Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 47be512
- Parents:
- 6c440362
- git-author:
- Jiri Svoboda <jiri@…> (2018-06-18 17:47:07)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-06-19 11:48:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/stdlib.h
r6c440362 r75c430e3 38 38 #include <_bits/size_t.h> 39 39 #include <_bits/wchar_t.h> 40 #include <bsearch.h> 40 41 #include <malloc.h> 41 42 #include <qsort.h> … … 74 75 75 76 extern int rand(void); 76 extern void srand(unsigned int seed);77 extern void srand(unsigned int); 77 78 78 79 extern void abort(void) __attribute__((noreturn)); … … 82 83 extern int at_quick_exit(void (*)(void)); 83 84 extern void quick_exit(int); 85 86 extern char *getenv(const char *); 87 extern int system(const char *); 84 88 85 89 extern int atoi(const char *);
Note:
See TracChangeset
for help on using the changeset viewer.