Changeset 473 for trunk/libs/mini-libc/unistd.c
- Timestamp:
- Aug 21, 2018, 6:01:01 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libs/mini-libc/unistd.c
r457 r473 78 78 int pipe( int fd[2] ) 79 79 { 80 return -1;81 //return hal_user_syscall( SYS_PIPE,(reg_t)fd, 0, 0, 0 );80 return hal_user_syscall( SYS_PIPE, 81 (reg_t)fd, 0, 0, 0 ); 82 82 } 83 83
Note: See TracChangeset
for help on using the changeset viewer.