diff options
author | Alexis211 <alexis211@gmail.com> | 2009-12-18 16:22:58 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-12-18 16:22:58 +0100 |
commit | d04645198d648a17ccb83e70aa5e6d60a06121aa (patch) | |
tree | 4ee3203112c2fda42a85ec00f3f78eee14689869 /Unix/i686-elf/include/sys/timeb.h | |
parent | 5f87c447bdcb82beacbfb930942fe9995dcdb60f (diff) | |
download | Melon-d04645198d648a17ccb83e70aa5e6d60a06121aa.tar.gz Melon-d04645198d648a17ccb83e70aa5e6d60a06121aa.zip |
[nonworking commit] Started porting newlib
Diffstat (limited to 'Unix/i686-elf/include/sys/timeb.h')
-rw-r--r-- | Unix/i686-elf/include/sys/timeb.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/Unix/i686-elf/include/sys/timeb.h b/Unix/i686-elf/include/sys/timeb.h new file mode 100644 index 0000000..0a2c3de --- /dev/null +++ b/Unix/i686-elf/include/sys/timeb.h @@ -0,0 +1,39 @@ +/* timeb.h -- An implementation of the standard Unix <sys/timeb.h> file. + Written by Ian Lance Taylor <ian@cygnus.com> + Public domain; no rights reserved. + + <sys/timeb.h> declares the structure used by the ftime function, as + well as the ftime function itself. Newlib does not provide an + implementation of ftime. */ + +#ifndef _SYS_TIMEB_H + +#ifdef __cplusplus +extern "C" { +#endif + +#define _SYS_TIMEB_H + +#include <_ansi.h> +#include <machine/types.h> + +#ifndef __time_t_defined +typedef _TIME_T_ time_t; +#define __time_t_defined +#endif + +struct timeb +{ + time_t time; + unsigned short millitm; + short timezone; + short dstflag; +}; + +extern int ftime _PARAMS ((struct timeb *)); + +#ifdef __cplusplus +} +#endif + +#endif /* ! defined (_SYS_TIMEB_H) */ |