Changeset 491e1ee in mainline
- Timestamp:
- 2011-06-16T09:53:00Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 59f799b
- Parents:
- b08ef1fd
- Location:
- uspace/lib/posix
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/ctype.c
rb08ef1fd r491e1ee 34 34 */ 35 35 36 #define POSIX_INTERNAL36 #define LIBPOSIX_INTERNAL 37 37 38 38 #include "ctype.h" -
uspace/lib/posix/ctype.h
rb08ef1fd r491e1ee 42 42 extern int posix_isxdigit(int ch); 43 43 44 #ifndef POSIX_INTERNAL44 #ifndef LIBPOSIX_INTERNAL 45 45 #define isxdigit posix_isxdigit 46 46 #endif -
uspace/lib/posix/signal.h
rb08ef1fd r491e1ee 91 91 }; 92 92 93 #ifndef POSIX_INTERNAL93 #ifndef LIBPOSIX_INTERNAL 94 94 #define sig_atomic_t posix_sig_atomic_t 95 95 #endif -
uspace/lib/posix/stdio.c
rb08ef1fd r491e1ee 34 34 */ 35 35 36 #define POSIX_INTERNAL36 #define LIBPOSIX_INTERNAL 37 37 38 38 #include <assert.h> -
uspace/lib/posix/stdio.h
rb08ef1fd r491e1ee 57 57 extern posix_off_t posix_ftello(FILE *stream); 58 58 59 #ifndef POSIX_INTERNAL59 #ifndef LIBPOSIX_INTERNAL 60 60 #define freopen posix_freopen 61 61 -
uspace/lib/posix/strings.c
rb08ef1fd r491e1ee 34 34 */ 35 35 36 #define POSIX_INTERNAL36 #define LIBPOSIX_INTERNAL 37 37 38 38 #include "common.h" -
uspace/lib/posix/sys/types.h
rb08ef1fd r491e1ee 51 51 typedef unsigned int posix_blkcnt_t; 52 52 53 #ifndef POSIX_INTERNAL53 #ifndef LIBPOSIX_INTERNAL 54 54 #define pid_t posix_pid_t 55 55 #define dev_t posix_dev_t -
uspace/lib/posix/unistd.c
rb08ef1fd r491e1ee 34 34 */ 35 35 36 #define POSIX_INTERNAL36 #define LIBPOSIX_INTERNAL 37 37 38 38 #include "common.h" -
uspace/lib/posix/unistd.h
rb08ef1fd r491e1ee 72 72 extern int posix_access(const char *path, int amode); 73 73 74 #ifndef POSIX_INTERNAL74 #ifndef LIBPOSIX_INTERNAL 75 75 #define isatty posix_isatty 76 76
Note:
See TracChangeset
for help on using the changeset viewer.