commit | 395a4e3ad6b03949fbe0a2818bfdec738da1c281 | [log] [tgz] |
---|---|---|
author | Petr Machata <pmachata@redhat.com> | Mon Jan 07 18:07:31 2013 +0100 |
committer | Petr Machata <pmachata@redhat.com> | Fri Mar 08 22:55:31 2013 +0100 |
tree | 0b6447a263c7926715f14625183bb7f4527be09d | |
parent | e56fe644f725f2c1c8308e7c2b5f9cd02e89eed0 [diff] |
Add guards around options.h
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 @@ extern struct dict *dict_opt_c; extern char **process_options(int argc, char **argv); + +#endif /* _OPTIONS_H_ */