File: timeb.h

package info (click to toggle)
dietlibc 0.12-2.5
  • links: PTS
  • area: main
  • in suites: woody
  • size: 5,620 kB
  • ctags: 12,123
  • sloc: ansic: 32,297; asm: 5,648; makefile: 428; perl: 62; sh: 61
file content (13 lines) | stat: -rw-r--r-- 187 bytes parent folder | download
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