From af57e5a7ceaef21e341214c494e742a8f21b1d0d Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 17 Jun 1994 23:52:35 +0000 Subject: [PATCH] (EMACS_GET_TIME): Test GETTIMEOFDAY_ONE_ARGUMENT, not USG5_4. --- src/systime.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) \ { \ -- 2.39.5