Changeset a92f13d in mainline
- Timestamp:
- 2012-04-03T12:36:57Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3f0ea0e2
- Parents:
- d4d74dc
- Location:
- uspace/lib/posix
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/Makefile
rd4d74dc ra92f13d 43 43 fcntl.c \ 44 44 fnmatch.c \ 45 getopt.c \ 45 46 locale.c \ 46 47 math.c \ -
uspace/lib/posix/stdbool.h
rd4d74dc ra92f13d 37 37 38 38 #ifdef LIBC_BOOL_H_ 39 #error "You can't include bool.h and stdbool.h at the same time." 39 # ifndef POSIX_STDIO_H_ 40 # ifndef POSIX_STDLIB_H_ 41 # error "You can't include bool.h and stdbool.h at the same time." 42 # endif 43 # endif 40 44 #endif 41 45 #define LIBC_BOOL_H_ -
uspace/lib/posix/unistd.c
rd4d74dc ra92f13d 49 49 /* Array of environment variable strings (NAME=VALUE). */ 50 50 char **posix_environ = NULL; 51 char *posix_optarg; 51 52 52 53 /** -
uspace/lib/posix/unistd.h
rd4d74dc ra92f13d 43 43 #define _exit exit 44 44 45 /* Option Arguments */ 46 extern char *optarg; 45 extern char *posix_optarg; 47 46 extern int optind, opterr, optopt; 48 47 extern int getopt(int, char * const [], const char *); … … 144 143 145 144 #ifndef LIBPOSIX_INTERNAL 145 #define optarg posix_optarg 146 146 147 #define environ posix_environ 147 148
Note:
See TracChangeset
for help on using the changeset viewer.