From: Richard M. Stallman Date: Fri, 17 Jun 1994 23:52:35 +0000 (+0000) Subject: (EMACS_GET_TIME): Test GETTIMEOFDAY_ONE_ARGUMENT, not USG5_4. X-Git-Tag: emacs-19.34~7904 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=af57e5a7ceaef21e341214c494e742a8f21b1d0d;p=emacs.git (EMACS_GET_TIME): Test GETTIMEOFDAY_ONE_ARGUMENT, not USG5_4. --- diff --git a/src/systime.h b/src/systime.h index 78fd84b074e..188a4743f32 100644 --- a/src/systime.h +++ b/src/systime.h @@ -96,18 +96,18 @@ extern long timezone; #define EMACS_SET_USECS(time, microseconds) ((time).tv_usec = (microseconds)) /* On SVR4, the compiler may complain if given this extra BSD arg. */ -#ifdef USG5_4 +#ifdef GETTIMEOFDAY_ONE_ARGUMENT #define EMACS_GET_TIME(time) \ { \ gettimeofday (&(time)); \ } -#else /* not USG5_4 */ +#else /* not GETTIMEOFDAY_ONE_ARGUMENT */ #define EMACS_GET_TIME(time) \ { \ struct timezone dummy; \ gettimeofday (&(time), &dummy); \ } -#endif /* not USG5_4 */ +#endif /* not GETTIMEOFDAY_ONE_ARGUMENT */ #define EMACS_ADD_TIME(dest, src1, src2) \ { \