1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/wince/sys/timeb.h
uema2 009f78761d * wince/sys : add stat.c, stat.h, timeb.c, timeb.h,
types.h, utime.c, utime.h
* wince/dll.mak : object file name changed.
* wince/io.c : add empty dup2().
* wince/io.h : add dup2 definition.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3146 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-14 05:27:35 +00:00

26 lines
289 B
C

#ifndef SYS_TIMEB_H
#define SYS_TIMEB_H 1
#include <sys/types.h>
struct _timeb {
time_t time;
unsigned short millitm;
short timezone;
short dstflag;
};
#define timeb _timeb
#ifdef __cplusplus
extern "C" {
#endif
int ftime(struct timeb *tp);
#ifdef __cplusplus
};
#endif
#endif