Mercurial > hg > xemacs-beta
diff src/systime.h @ 272:c5d627a313b1 r21-0b34
Import from CVS: tag r21-0b34
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:28:48 +0200 |
parents | 677f6a0ee643 |
children | fbbf69b4e8a7 |
line wrap: on
line diff
--- a/src/systime.h Mon Aug 13 10:27:41 2007 +0200 +++ b/src/systime.h Mon Aug 13 10:28:48 2007 +0200 @@ -141,7 +141,7 @@ #if !defined (HAVE_GETTIMEOFDAY) struct timezone; -extern int gettimeofday (struct timeval *, struct timezone *); +int gettimeofday (struct timeval *, struct timezone *); #endif /* On SVR4, the compiler may complain if given this extra BSD arg. */ @@ -149,7 +149,7 @@ # ifdef SOLARIS2 /* Solaris (at least) omits this prototype. IRIX5 has it and chokes if we declare it here. */ -extern int gettimeofday (struct timeval *); +int gettimeofday (struct timeval *); # endif /* According to the Xt sources, some NTP daemons on some systems may return non-normalized values. */ @@ -162,7 +162,7 @@ # ifdef SOLARIS2 /* Solaris doesn't provide any prototype of this unless a bunch of crap we don't define are defined. */ -extern int gettimeofday (struct timeval *, void *dummy); +int gettimeofday (struct timeval *, void *dummy); # endif #define EMACS_GET_TIME(time) \ do { \ @@ -219,10 +219,10 @@ #define EMACS_SET_SECS_USECS(time, secs, usecs) \ (EMACS_SET_SECS (time, secs), EMACS_SET_USECS (time, usecs)) -extern int set_file_times (char *filename, EMACS_TIME atime, EMACS_TIME mtime); +int set_file_times (char *filename, EMACS_TIME atime, EMACS_TIME mtime); -extern void get_process_times (double *user_time, double *system_time, - double *real_time); +void get_process_times (double *user_time, double *system_time, + double *real_time); #if defined(WINDOWSNT) || defined(BROKEN_CYGWIN)