aboutsummaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2021-07-23 15:58:06 +0100
committerTomasz Kramkowski <tk@the-tk.com>2021-07-23 15:58:06 +0100
commit42cc7b4840818fc0d989202d44315271f968e74d (patch)
tree76d6b036c663cc448c45b3776e54c01365d2c63a /common.h
parentb4a0979774fa5f83e1025581824bb56f23561803 (diff)
downloadpack-42cc7b4840818fc0d989202d44315271f968e74d.tar.gz
pack-42cc7b4840818fc0d989202d44315271f968e74d.tar.xz
pack-42cc7b4840818fc0d989202d44315271f968e74d.zip
common.h: Fix include guards
Diffstat (limited to 'common.h')
-rw-r--r--common.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/common.h b/common.h
index 0547e3f..d8a9622 100644
--- a/common.h
+++ b/common.h
@@ -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