#define EMACS_SET_SECS(time, seconds) ((time).tv_sec = (seconds))
#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
+#define EMACS_GET_TIME(time) \
+{ \
+ gettimeofday (&(time)); \
+}
+#else /* not USG5_4 */
#define EMACS_GET_TIME(time) \
{ \
struct timezone dummy; \
gettimeofday (&(time), &dummy); \
}
+#endif /* not USG5_4 */
#define EMACS_ADD_TIME(dest, src1, src2) \
{ \