Mercurial > emacs
view nt/inc/sys/time.h @ 88986:0ddc18ff5b1d
(x_produce_glyphs): Use ASCII_CHAR_P, not
SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
it->multibyte_p is zero.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 15 Aug 2002 02:29:00 +0000 |
parents | fa66d09c3310 |
children | 23a1cea22d13 |
line wrap: on
line source
#ifndef SYS_TIME_H_INCLUDED #define SYS_TIME_H_INCLUDED /* * sys/time.h doesn't exist on NT */ struct timeval { long tv_sec; /* seconds */ long tv_usec; /* microseconds */ }; struct timezone { int tz_minuteswest; /* minutes west of Greenwich */ int tz_dsttime; /* type of dst correction */ }; void gettimeofday (struct timeval *, struct timezone *); #endif /* SYS_TIME_H_INCLUDED */ /* end of sys/time.h */