From: Thibault Godouet Date: Tue, 15 May 2001 00:46:11 +0000 (+0000) Subject: before loading a header file, check if it has already been loaded X-Git-Tag: ver2_9_4~349 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d95d9dc8d89fcf310c420e6a97fbe0f83c54dda5;p=thirdparty%2Ffcron.git before loading a header file, check if it has already been loaded --- diff --git a/conf.h b/conf.h index 7055dda..6c88e3b 100644 --- a/conf.h +++ b/conf.h @@ -21,11 +21,15 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: conf.h,v 1.1 2001-04-29 22:21:09 thib Exp $ */ + /* $Id: conf.h,v 1.2 2001-05-15 00:46:11 thib Exp $ */ +#ifndef __CONF_H__ +#define __CONF_H__ /* functions prototypes */ extern void reload_all(const char *dir_name); extern void synchronize_dir(const char *dir_name); extern void delete_file(const char *user_name); extern void save_file(CF *file_name); + +#endif /* __CONF_H__ */