Changeset db24058 in mainline for uspace/lib/libc/include/stdlib.h
- Timestamp:
- 2009-06-30T15:53:15Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2d11a7d8
- Parents:
- 6db6fd1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/stdlib.h
r6db6fd1 rdb24058 39 39 #include <malloc.h> 40 40 41 #define abort() _exit(1)42 #define exit(status) 41 #define abort() _exit(1) 42 #define exit(status) _exit((status)) 43 43 44 #define RAND_MAX 71402544 #define RAND_MAX 714025 45 45 46 46 extern long int random(void); … … 51 51 return random(); 52 52 } 53 53 54 static inline void srand(unsigned int seed) 54 55 {
Note:
See TracChangeset
for help on using the changeset viewer.