Check-in Number:
|
1854 | |
Date: |
2002-Feb-14 11:47:20 (local)
2002-Feb-14 10:47:20 (UTC) |
User: | thl |
Branch: | |
Comment: |
add outermost ifndef headers |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/lmtp2nntp/lmtp2nntp_config.h 1.7 -> 1.8
--- lmtp2nntp_config.h 2002/01/24 16:25:54 1.7
+++ lmtp2nntp_config.h 2002/02/14 10:47:20 1.8
@@ -24,6 +24,11 @@
** lmtp2nntp_config.h: config handling
*/
+#ifndef __LMTP2NNTP_CONFIG_H__
+#define __LMTP2NNTP_CONFIG_H__
+
#include "lmtp2nntp_global.h"
#include "fixme.h"
void config_context(lmtp2nntp_t *);
+
+#endif /* __LMTP2NNTP_CONFIG_H__ */
|
|
ossp-pkg/lmtp2nntp/lmtp2nntp_option.h 1.4 -> 1.5
--- lmtp2nntp_option.h 2002/02/04 13:52:15 1.4
+++ lmtp2nntp_option.h 2002/02/14 10:47:20 1.5
@@ -24,6 +24,9 @@
** lmtp2nntp_option.h: option parsing
*/
+#ifndef __LMTP2NNTP_OPTION_H__
+#define __LMTP2NNTP_OPTION_H__
+
#include "lmtp2nntp_global.h"
#include "val.h"
@@ -108,3 +111,5 @@
lmtp2nntp_option_rc_t option_register(lmtp2nntp_option_t *, char *, char, optiontype_t, char *, char *, char *, optionloop_cb_t *, char *);
lmtp2nntp_option_rc_t option_parse (lmtp2nntp_option_t *, int, char **);
lmtp2nntp_option_rc_t option_destroy (lmtp2nntp_option_t *);
+
+#endif /* __LMTP2NNTP_OPTION_H__ */
|
|