Changeset c23275a in mainline for uspace/lib/c
- Timestamp:
- 2017-04-02T21:08:10Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 438f355
- Parents:
- d96d9bc
- Location:
- uspace/lib/c/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/stdio.h
rd96d9bc rc23275a 43 43 44 44 #define EOF (-1) 45 46 #ifndef SEEK_SET 47 #define SEEK_SET 0 48 #endif 49 50 #ifndef SEEK_CUR 51 #define SEEK_CUR 1 52 #endif 53 54 #ifndef SEEK_END 55 #define SEEK_END 2 56 #endif 45 57 46 58 /** Default size for stream I/O buffers */ -
uspace/lib/c/include/stdlib.h
rd96d9bc rc23275a 49 49 50 50 extern void abort(void) __attribute__((noreturn)); 51 extern void exit(int) __attribute__((noreturn)); 51 52 52 53 #endif -
uspace/lib/c/include/unistd.h
rd96d9bc rc23275a 44 44 #endif 45 45 46 #ifndef SEEK_SET47 #define SEEK_SET 048 #endif49 50 #ifndef SEEK_CUR51 #define SEEK_CUR 152 #endif53 54 #ifndef SEEK_END55 #define SEEK_END 256 #endif57 58 46 #define getpagesize() (PAGE_SIZE) 59 47 60 extern void exit(int) __attribute__((noreturn));61 48 extern int usleep(useconds_t); 62 49 extern unsigned int sleep(unsigned int);
Note:
See TracChangeset
for help on using the changeset viewer.