Changeset 5d4e90f0 in mainline for uspace/lib/libc/include/sys
- Timestamp:
- 2007-09-27T12:35:36Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bcf23cf
- Parents:
- 8c20b26
- Location:
- uspace/lib/libc/include/sys
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/sys/mman.h
r8c20b26 r5d4e90f0 37 37 38 38 #include <as.h> 39 #include <sys/types.h> 39 40 40 41 #define MAP_FAILED ((void *) -1) … … 49 50 #define PROTO_EXEC AS_AREA_EXEC 50 51 51 extern void 52 52 extern void *mmap(void *start, size_t length, int prot, int flags, int fd, 53 off_t offset); 53 54 extern int munmap(void *start, size_t length); 54 55 -
uspace/lib/libc/include/sys/time.h
r8c20b26 r5d4e90f0 36 36 #define LIBC_TIME_H_ 37 37 38 #include < types.h>38 #include <sys/types.h> 39 39 40 40 #define DST_NONE 0 -
uspace/lib/libc/include/sys/types.h
r8c20b26 r5d4e90f0 36 36 #define LIBC_SYS_TYPES_H_ 37 37 38 #include <types.h> 38 #include <libarch/types.h> 39 40 typedef unsigned long size_t; 41 typedef signed long ssize_t; 42 typedef long off_t; 39 43 40 44 #endif
Note:
See TracChangeset
for help on using the changeset viewer.