diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2021-07-23 15:58:06 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2021-07-23 15:58:06 +0100 |
commit | 42cc7b4840818fc0d989202d44315271f968e74d (patch) | |
tree | 76d6b036c663cc448c45b3776e54c01365d2c63a | |
parent | b4a0979774fa5f83e1025581824bb56f23561803 (diff) | |
download | pack-42cc7b4840818fc0d989202d44315271f968e74d.tar.gz pack-42cc7b4840818fc0d989202d44315271f968e74d.tar.xz pack-42cc7b4840818fc0d989202d44315271f968e74d.zip |
common.h: Fix include guards
-rw-r--r-- | common.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,9 +1,9 @@ /* - * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com> + * Copyright (C) 2020-2021 Tomasz Kramkowski <tk@the-tk.com> * SPDX-License-Identifier: MIT */ -#ifndef PACK_INTERNAL_H -#define PACK_INTERNAL_H +#ifndef PACK_COMMON_H +#define PACK_COMMON_H #include <limits.h> #include <stddef.h> @@ -14,4 +14,4 @@ enum endian { BIG, LITTLE }; size_t getsize(char c); -#endif // !PACK_INTERNAL_H +#endif // !PACK_COMMON_H |