2001-03-06 03:17:54 -05:00
|
|
|
/* x68 compatibility functions -- follows Ruby's lisence */
|
|
|
|
|
1998-01-16 07:13:05 -05:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#if !HAVE_SELECT
|
|
|
|
#include "x68/select.c"
|
|
|
|
#endif
|
|
|
|
#if MISSING__DTOS18
|
|
|
|
#include "x68/_dtos18.c"
|
|
|
|
#endif
|
|
|
|
#if MISSING_FCONVERT
|
|
|
|
#include "x68/_round.c"
|
|
|
|
#include "x68/fconvert.c"
|
|
|
|
#endif
|
1999-01-19 23:59:39 -05:00
|
|
|
|
|
|
|
/* missing some basic syscalls */
|
|
|
|
int
|
|
|
|
link(const char *src, const char *dst)
|
|
|
|
{
|
|
|
|
return symlink(src, dst);
|
|
|
|
}
|
|
|
|
|
2000-01-04 23:41:21 -05:00
|
|
|
#ifndef HAVE_GETTIMEOFDAY
|
1999-01-19 23:59:39 -05:00
|
|
|
#include <time.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
struct timezone {
|
|
|
|
int tz_minueswest;
|
|
|
|
int tz_dsttime;
|
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
gettimeofday(struct timeval *tv, struct timezone *tz)
|
|
|
|
{
|
|
|
|
tv->tv_sec = (long)time((time_t*)0);
|
|
|
|
tv->tv_usec = 0;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2000-01-04 23:41:21 -05:00
|
|
|
#endif
|