Changeset 2b3dd78 in mainline for uspace/lib/c/include/stdlib.h
- Timestamp:
- 2018-01-31T12:02:00Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5595841
- Parents:
- a0a9cc2 (diff), 14d789c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/stdlib.h
ra0a9cc2 r2b3dd78 42 42 #define RAND_MAX 714025 43 43 44 #define rand() random() 45 #define srand(seed) srandom(seed) 46 47 extern long int random(void); 48 extern void srandom(unsigned int seed); 44 extern int rand(void); 45 extern void srand(unsigned int seed); 49 46 50 47 extern void abort(void) __attribute__((noreturn)); 51 48 extern void exit(int) __attribute__((noreturn)); 49 50 extern int atoi(const char *); 51 extern long atol(const char *); 52 extern long long atoll(const char *); 53 54 extern long strtol(const char *__restrict__, char **__restrict__, int); 55 extern long long strtoll(const char *__restrict__, char **__restrict__, int); 56 extern unsigned long strtoul(const char *__restrict__, char **__restrict__, int); 57 extern unsigned long long strtoull(const char *__restrict__, char **__restrict__, int); 52 58 53 59 #endif
Note:
See TracChangeset
for help on using the changeset viewer.