Changeset 099c834 in mainline for uspace/lib/posix
- Timestamp:
- 2018-06-18T13:56:02Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6c440362
- Parents:
- 379db9ef
- git-author:
- Jiri Svoboda <jiri@…> (2018-06-16 22:43:05)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-06-18 13:56:02)
- Location:
- uspace/lib/posix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/include/posix/stdlib.h
r379db9ef r099c834 42 42 #include <_bits/NULL.h> 43 43 44 /* Process Termination */45 #define _Exit exit46 47 extern int atexit(void (*func)(void));48 49 44 /* Absolute Value */ 50 45 extern int abs(int i); -
uspace/lib/posix/src/stdlib.c
r379db9ef r099c834 49 49 #include "libc/vfs/vfs.h" 50 50 #include "libc/stats.h" 51 52 /**53 *54 * @param array55 * @param count56 * @param size57 * @param compare58 */59 int atexit(void (*func)(void))60 {61 // TODO: low priority, just a compile-time dependency of binutils62 not_implemented();63 return 0;64 }65 51 66 52 /**
Note:
See TracChangeset
for help on using the changeset viewer.