aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Machata <pmachata@redhat.com>2013-01-07 18:07:31 +0100
committerPetr Machata <pmachata@redhat.com>2013-03-08 22:55:31 +0100
commit395a4e3ad6b03949fbe0a2818bfdec738da1c281 (patch)
tree0b6447a263c7926715f14625183bb7f4527be09d
parente56fe644f725f2c1c8308e7c2b5f9cd02e89eed0 (diff)
downloadltrace-395a4e3ad6b03949fbe0a2818bfdec738da1c281.tar.gz
Add guards around options.h
-rw-r--r--options.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/options.h b/options.h
index f5b2c2c..6c28ed9 100644
--- a/options.h
+++ b/options.h
@@ -21,6 +21,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
+#ifndef _OPTIONS_H_
+#define _OPTIONS_H_
#include <stdio.h>
#include <sys/types.h>
@@ -108,3 +110,5 @@ struct opt_c_struct {
extern struct dict *dict_opt_c;
extern char **process_options(int argc, char **argv);
+
+#endif /* _OPTIONS_H_ */