From: Jim Blandy Date: Sun, 18 Jul 1993 06:13:07 +0000 (+0000) Subject: * wakeup.c: Use CPP tangle from autoconf manual to #include the X-Git-Tag: emacs-19.34~11724 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=af40bbfa99a32434416278aff411cd2a2dd05db4;p=emacs.git * wakeup.c: Use CPP tangle from autoconf manual to #include the correct combination of and . --- diff --git a/lib-src/wakeup.c b/lib-src/wakeup.c index 07c324d1210..e481bee8324 100644 --- a/lib-src/wakeup.c +++ b/lib-src/wakeup.c @@ -1,9 +1,20 @@ /* Program to produce output at regular intervals. */ +#include "config.h" + #include -#include #include + +#ifdef TIME_WITH_SYS_TIME #include +#include +#else +#ifdef HAVE_SYS_TIME_H +#include +#else +#include +#endif +#endif struct tm *localtime ();