Mercurial > emacs
view nt/inc/sys/time.h @ 26640:f95236e53857
First "working" version:
- uncomment-region doesn't work for some unknown reason
- comment-multi-line allows the use of multi line comments
- comment-extra-lines allows yet another style choice
- comment-add allows to default to `;;'
- comment-region on a comment calls uncomment-region
- C-u C-u comment-region aligns comment end markers
- C-u C-u C-u comment-region puts the comment inside a rectangle
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 28 Nov 1999 18:51:06 +0000 |
parents | 4d638e5a9e7d |
children | fa66d09c3310 |
line wrap: on
line source
/* * 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 *); /* end of sys/time.h */