summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/sys/timeb.h
blob: ceed377e7983fadac374ac9b74b5d7a8ec524e5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __SYS_TIMEB_H
#define __SYS_TIMEB_H 1

struct timeb {
  time_t   time;
  unsigned short millitm;
  short    timezone;
  short    dstflag;
};

int ftime(struct timeb *tp);

#endif