summaryrefslogtreecommitdiff
path: root/utils.h
diff options
context:
space:
mode:
authorPrzemyslaw Pawelczyk <przemoc@gmail.com>2013-05-03 23:32:14 +0200
committerPrzemyslaw Pawelczyk <przemoc@gmail.com>2013-05-03 23:32:14 +0200
commitd5a3600ae32b4d43c91bda2cc8cd554b04c119c6 (patch)
tree0724a77e2b030490e41f76067301e23bcf437ae4 /utils.h
parentc26e8b584e3ab7427c7e5b8bddd40511096ae321 (diff)
Add include guards in header files.
Diffstat (limited to 'utils.h')
-rw-r--r--utils.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils.h b/utils.h
index a5f8b54..d19c3ae 100644
--- a/utils.h
+++ b/utils.h
@@ -18,6 +18,9 @@
*
*/
+#ifndef UTILS_H
+#define UTILS_H
+
/* For uint64_t */
#include <stdint.h>
/* For ssize_t */
@@ -85,3 +88,4 @@ struct passwd *xgetpwnam(const char *name);
/* Caching version of getpwuid */
struct passwd *xgetpwuid(uid_t uid);
+#endif /* UTILS_H */