From af40bbfa99a32434416278aff411cd2a2dd05db4 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Sun, 18 Jul 1993 06:13:07 +0000 Subject: [PATCH] * wakeup.c: Use CPP tangle from autoconf manual to #include the correct combination of and . --- lib-src/wakeup.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/lib-src/wakeup.c b/lib-src/wakeup.c index 07c324d121..e481bee832 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 (); -- 2.39.2