Changeset 3899 for branches/libc-0.6/src/emx/include
- Timestamp:
- Oct 22, 2014, 9:17:00 PM (11 years ago)
- Location:
- branches/libc-0.6/src/emx/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/libc-0.6/src/emx/include/string.h
r3809 r3899 120 120 size_t strxfrm(char * __restrict, const char * __restrict, size_t); 121 121 #if __BSD_VISIBLE 122 void swab(const void *, void *, size_t); 122 # ifndef _SWAB_DECLARED /* bird: also in unistd.h */ 123 # define _SWAB_DECLARED /* bird: also in unistd.h */ 124 # if !defined(_SSIZE_T_DECLARED) && !defined(_SSIZE_T) 125 typedef __ssize_t ssize_t; 126 # define _SSIZE_T_DECLARED 127 # define _SSIZE_T 128 # endif 129 void swab(const void * __restrict, void * __restrict, ssize_t); 130 # endif /* !_SWAB_DECLARED */ /* bird: also in unistd.h */ 123 131 #endif 124 132 -
branches/libc-0.6/src/emx/include/unistd.h
r2455 r3899 455 455 int setregid(gid_t, gid_t); 456 456 int setreuid(uid_t, uid_t); 457 /* void swab(const void * __restrict, void * __restrict, ssize_t); */ 457 458 #ifndef _SWAB_DECLARED /* bird: also in string.h */ 459 # define _SWAB_DECLARED /* bird: also in string.h */ 460 void swab(const void * __restrict, void * __restrict, ssize_t); 461 #endif /* !_SWAB_DECLARED */ /* bird: also in string.h */ 458 462 void sync(void); 459 463 useconds_t ualarm(useconds_t, useconds_t);
Note:
See TracChangeset
for help on using the changeset viewer.