diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2016-11-23 20:35:12 +0000 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2016-11-23 20:35:12 +0000 |
commit | c97cdb6203c87d121fb47fd6bc8b55211aa3d046 (patch) | |
tree | a1befa30789a21727dc6ee8fbbdebc09de3edc7a | |
parent | c3c5f1e5fe27574220c3e94a79048e066cacc121 (diff) | |
download | fmk-c97cdb6203c87d121fb47fd6bc8b55211aa3d046.tar.gz fmk-c97cdb6203c87d121fb47fd6bc8b55211aa3d046.tar.xz fmk-c97cdb6203c87d121fb47fd6bc8b55211aa3d046.zip |
lib/le.h: correct ifdef guard define
-rw-r--r-- | lib/le.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 */ |