]> granicus.if.org Git - fcron/commitdiff
include in each .c file the corresponding .h file
authorthib <thib>
Tue, 15 May 2001 00:42:48 +0000 (00:42 +0000)
committerthib <thib>
Tue, 15 May 2001 00:42:48 +0000 (00:42 +0000)
allow.c
database.c
fileconf.c
log.c

diff --git a/allow.c b/allow.c
index 9169334aaf5b96bcfbdbd8a332d7a13926347be1..531656362bb0f3c6cf4aef43a0d98df3b3eefdac 100644 (file)
--- a/allow.c
+++ b/allow.c
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: allow.c,v 1.5 2001-01-12 21:37:52 thib Exp $ */
+ /* $Id: allow.c,v 1.6 2001-05-15 00:51:32 thib Exp $ */
 
 #include "fcrontab.h"
+#include "allow.h"
 
 int
 in_file(char *str, char *file)
index 09b0c1827965a9202841801968e71219d0a06c0c..41104259302bf9bb4d3bf6a9c84df99a12e41f1d 100644 (file)
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: database.c,v 1.50 2001-04-21 08:50:46 thib Exp $ */
+ /* $Id: database.c,v 1.51 2001-05-15 00:46:54 thib Exp $ */
 
 #include "fcron.h"
+#include "database.h"
 
 int is_leap_year(int year);
 int get_nb_mdays(int year, int mon);
 void set_wday(struct tm *date);
 void goto_non_matching(CL *line, struct tm *tm, char option);
+#define END_OF_INTERVAL 1    /* goto_non_matching() : option */
 void run_normal_job(CL *line);
 void run_serial_job(void);
 void run_lavg_job(int i);
index 75b37232d8ced743f7a7b34483f96403b46c3749..81c5066e9a238417748193e8a1ba1656aa6a435d 100644 (file)
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: fileconf.c,v 1.43 2001-04-21 08:47:07 thib Exp $ */
+ /* $Id: fileconf.c,v 1.44 2001-05-15 00:45:21 thib Exp $ */
 
 #include "fcrontab.h"
+#include "fileconf.h"
 
 char *get_string(char *ptr);
 int get_line(char *str, size_t size, FILE *file);
diff --git a/log.c b/log.c
index 00195ee62df1eba0f69d2266f62ff0dd72e09e92..51bfba714ce6fa0e86c6a168f63e12283d17b381 100644 (file)
--- a/log.c
+++ b/log.c
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: log.c,v 1.6 2001-04-21 08:42:33 thib Exp $ */
+ /* $Id: log.c,v 1.7 2001-05-15 00:42:48 thib Exp $ */
 
 /* This code is inspired by Anacron's sources of
    Itai Tzur <itzur@actcom.co.il> ( thanks to him ) */
 
 
 #include "fcron.h"
+#include "log.h"
 
 static void xopenlog(void);