# HG changeset patch # User Jim Blandy # Date 742975987 0 # Node ID d253c8a4b7e5f9d440b14c20a1efab02cb7c95c8 # Parent 9a906e5f9b28f0e13f28ac749b0868e1508c0724 * wakeup.c: Use CPP tangle from autoconf manual to #include the correct combination of and . diff -r 9a906e5f9b28 -r d253c8a4b7e5 lib-src/=wakeup.c --- a/lib-src/=wakeup.c Sun Jul 18 06:12:49 1993 +0000 +++ b/lib-src/=wakeup.c Sun Jul 18 06:13:07 1993 +0000 @@ -1,9 +1,20 @@ /* Program to produce output at regular intervals. */ +#include "config.h" + #include +#include + +#ifdef TIME_WITH_SYS_TIME +#include #include -#include +#else +#ifdef HAVE_SYS_TIME_H #include +#else +#include +#endif +#endif struct tm *localtime ();