Changeset 7ca8b36b in mainline for generic/src/syscall/syscall.c
- Timestamp:
- 2006-05-21T14:32:28Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 25bf215
- Parents:
- a33c990
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/syscall/syscall.c
ra33c990 r7ca8b36b 48 48 #include <sysinfo/sysinfo.h> 49 49 50 static __native sys_io(int fd, const void * buf, size_t count) {51 52 return count; /*Syscall deprecated*/50 static __native sys_io(int fd, const void * buf, size_t count) 51 { 52 // return count; /*Syscall deprecated*/ 53 53 // TODO: buf sanity checks and a lot of other stuff ... 54 /* 54 55 55 size_t i; 56 56 … … 58 58 putchar(((char *) buf)[i]); 59 59 60 return count; */60 return count; 61 61 } 62 62
Note:
See TracChangeset
for help on using the changeset viewer.