Restore the "GPL licensing not permitted" in GLUT license headers.
[haiku.git] / headers / posix / sys / timeb.h
blobe1e2742b8af06eec57026ab99ca04b8cb8037f95
1 /*
2 * Copyright 2002-2012 Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 */
5 #ifndef _SYS_TIMEB_H
6 #define _SYS_TIMEB_H
9 #include <time.h>
12 struct timeb {
13 time_t time; /* seconds of current time */
14 unsigned short millitm; /* milliseconds of current time */
15 short timezone; /* timezone difference to GMT in minutes */
16 short dstflag; /* daylight saving flag */
20 extern
21 #ifdef __cplusplus
22 "C"
23 #endif
24 int ftime(struct timeb *timeb);
25 /* legacy */
27 #endif /* _SYS_TIMEB_H */