Changeset b06e68ef in rtems for c/src/lib/libc
- Timestamp:
- 08/17/95 19:51:51 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 95fbca1
- Parents:
- 3b438fa
- Location:
- c/src/lib/libc
- Files:
-
- 6 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libc/syscalls.c
r3b438fa rb06e68ef 36 36 } 37 37 38 int39 __close(int _fd)40 {41 /* return value usually ignored anyhow */42 return 0;43 }44 45 int46 __open(const char *filename)47 {48 /* always fail */49 return -1;50 }51 52 int53 __lseek(int _fd, off_t offset, int whence)54 {55 /* nothing is ever seekable */56 return -1;57 }58 59 38 int stat( const char *path, struct stat *buf ) 60 39 {
Note: See TracChangeset
for help on using the changeset viewer.