blob: 2b01dafea7178fc288e06a469fb71da12b3adbc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <time/sys/timeb.h>
#ifndef _ISOMAC
# if __TIMESIZE == 64
# define __timeb64 timeb
# define __ftime64 ftime
# else
# include <struct___timeb64.h>
extern int __ftime64 (struct __timeb64 *) __nonnull ((1));
libc_hidden_proto (__ftime64);
# endif
#endif
|