summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2016-11-23 20:35:12 +0000
committerTomasz Kramkowski <tk@the-tk.com>2016-11-23 20:35:12 +0000
commitc97cdb6203c87d121fb47fd6bc8b55211aa3d046 (patch)
treea1befa30789a21727dc6ee8fbbdebc09de3edc7a /lib
parentc3c5f1e5fe27574220c3e94a79048e066cacc121 (diff)
downloadfmk-c97cdb6203c87d121fb47fd6bc8b55211aa3d046.tar.gz
fmk-c97cdb6203c87d121fb47fd6bc8b55211aa3d046.tar.xz
fmk-c97cdb6203c87d121fb47fd6bc8b55211aa3d046.zip
lib/le.h: correct ifdef guard define
Diffstat (limited to 'lib')
-rw-r--r--lib/le.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/le.h b/lib/le.h
index e1341a7..a4ebe58 100644
--- a/lib/le.h
+++ b/lib/le.h
@@ -1,5 +1,5 @@
-#ifndef LE_H
-#define LE_H
+#ifndef LIB_LE_H
+#define LIB_LE_H
#include <stdint.h>
@@ -9,4 +9,4 @@ uint32_t le32toh(const void *data);
void htole16(void *data, uint16_t value);
void htole32(void *data, uint32_t value);
-#endif /* LE_H */
+#endif /* LIB_LE_H */