diff options
author | Przemyslaw Pawelczyk <przemoc@gmail.com> | 2013-05-03 23:32:14 +0200 |
---|---|---|
committer | Przemyslaw Pawelczyk <przemoc@gmail.com> | 2013-05-03 23:32:14 +0200 |
commit | d5a3600ae32b4d43c91bda2cc8cd554b04c119c6 (patch) | |
tree | 0724a77e2b030490e41f76067301e23bcf437ae4 /metaentry.h | |
parent | c26e8b584e3ab7427c7e5b8bddd40511096ae321 (diff) |
Add include guards in header files.
Diffstat (limited to 'metaentry.h')
-rw-r--r-- | metaentry.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/metaentry.h b/metaentry.h index bd80bc4..09a58a9 100644 --- a/metaentry.h +++ b/metaentry.h @@ -18,6 +18,9 @@ * */ +#ifndef METAENTRY_H +#define METAENTRY_H + #include <stdbool.h> #include "settings.h" @@ -90,3 +93,4 @@ void mentries_compare(struct metahash *mhashreal, int cmp), msettings *st); +#endif /* METAENTRY_H */ |