summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Garrett <mjg@redhat.com>2011-01-18 22:51:16 -0500
committerMatthew Garrett <mjg@redhat.com>2011-01-18 22:51:16 -0500
commit2b9f39bdee982a44c613980531721d85193b5659 (patch)
tree88411e14ad0a1a2afc0cdb3b61ffc8559b543d53
parent0c5f466ae5f1b3a0b6af1d1ba5d90938f0d5212d (diff)
Header guard
-rw-r--r--libbacklight.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libbacklight.h b/libbacklight.h
index 8ef9983..ff0e842 100644
--- a/libbacklight.h
+++ b/libbacklight.h
@@ -1,3 +1,5 @@
+#ifndef LIBBACKLIGHT_H
+#define LIBBACKLIGHT_H
#include <pciaccess.h>
#ifdef __cplusplus
@@ -42,3 +44,5 @@ long backlight_set_brightness(struct backlight *backlight, long brightness);
#ifdef __cplusplus
}
#endif
+
+#endif /* LIBBACKLIGHT_H */