Added linux386 platform.

This commit is contained in:
dtrg
2007-04-21 23:02:11 +00:00
parent 201c66879d
commit b500b1a7b7
28 changed files with 1118 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/* $Source$
* $State$
* $Revision$
*/
#include <stdlib.h>
#include <errno.h>
#include <sys/time.h>
#include <time.h>
#include <unistd.h>
#include "libsys.h"
int gettimeofday(struct timeval *tv, struct timezone *tz)
{
return _syscall(__NR_gettimeofday, (quad) tv, (quad) tz, 0);
}