source:
trunk/minix/lib/posix/_stime.c@
19
| Last change on this file since 19 was 9, checked in by , 15 years ago | |
|---|---|
| File size: 187 bytes | |
| Line | |
|---|---|
| 1 | #include <lib.h> |
| 2 | #define stime _stime |
| 3 | #include <minix/minlib.h> |
| 4 | #include <time.h> |
| 5 | |
| 6 | PUBLIC int stime(top) |
| 7 | long *top; |
| 8 | { |
| 9 | message m; |
| 10 | |
| 11 | m.m2_l1 = *top; |
| 12 | return(_syscall(MM, STIME, &m)); |
| 13 | } |
Note:
See TracBrowser
for help on using the repository browser.