diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-13 06:53:59 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-13 06:53:59 +0000 |
commit | b8ced4920bdcd3f94b77e22c02c2dae1da0a3b55 (patch) | |
tree | 54e1f60eb884f770da23a1349d645190554330b6 | |
parent | d22a7d80e5e138c604616d5a62788e66ceb019c1 (diff) | |
download | rsyslog-b8ced4920bdcd3f94b77e22c02c2dae1da0a3b55.tar.gz rsyslog-b8ced4920bdcd3f94b77e22c02c2dae1da0a3b55.tar.bz2 rsyslog-b8ced4920bdcd3f94b77e22c02c2dae1da0a3b55.zip |
fixed forgotten multi-include prevention
-rw-r--r-- | syslogd-types.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/syslogd-types.h b/syslogd-types.h index 3a33e693..ca608149 100644 --- a/syslogd-types.h +++ b/syslogd-types.h @@ -22,6 +22,9 @@ * * A copy of the GPL can be found in the file "COPYING" in this distribution. */ +#ifndef SYSLOGD_TYPES_INCLUDED +#define SYSLOGD_TYPES_INCLUDED 1 + #include "config.h" /* make sure we have autoconf macros */ #include "stringbuf.h" @@ -263,3 +266,5 @@ struct filed { * also used to detect duplicates. */ }; typedef struct filed selector_t; /* new type name */ + +#endif /* #ifndef SYSLOGD_TYPES_INCLUDED */ |