blob: 560158b355fb04d23ab733ff0c5f89833ee1a9fa [file] [log] [blame]
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#define __NEED_time_t
#include <bits/alltypes.h>
struct timeb {
time_t time;
unsigned short millitm;
short timezone, dstflag;
};
int ftime(struct timeb*);
#ifdef __cplusplus
}
#endif