add directory Linux-0.98

This commit is contained in:
gohigh
2024-02-19 00:21:16 -05:00
parent 265896c4ae
commit 56596ada90
13765 changed files with 3471432 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
#ifndef _SYS_TIMEB_H
#define _SYS_TIMEB_H
#include <traditional.h>
#include <sys/types.h>
struct timeb {
time_t time;
unsigned short millitm;
short timezone;
short dstflag;
};
#ifdef __cplusplus
extern "C" {
#endif
extern int ftime _ARGS ((struct timeb *__tp));
#ifdef __cplusplus
}
#endif
#endif /* _SYS_TIMEB_H */