source: trunk/minix/lib/posix/_stime.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 187 bytes
RevLine 
[9]1#include <lib.h>
2#define stime _stime
3#include <minix/minlib.h>
4#include <time.h>
5
6PUBLIC int stime(top)
7long *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.