summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/u8c/dbg.h4
-rw-r--r--include/u8c/dbgprint.h3
-rw-r--r--include/u8c/unimax.h3
-rw-r--r--include/u8c/ver.h5
4 files changed, 9 insertions, 6 deletions
diff --git a/include/u8c/dbg.h b/include/u8c/dbg.h
index e389195..e517a79 100644
--- a/include/u8c/dbg.h
+++ b/include/u8c/dbg.h
@@ -14,8 +14,8 @@
If not, see <https://www.gnu.org/licenses/>.
*/
/* Debug */
-# if !defined(u8c_sym_debug)
-# define u8c_sym_debug
+# if !defined(u8c_sym_dbg)
+# define u8c_sym_dbg
# include <stdbool.h>
extern bool const u8c_dbg;
# endif
diff --git a/include/u8c/dbgprint.h b/include/u8c/dbgprint.h
index 2f974d2..8c5ea31 100644
--- a/include/u8c/dbgprint.h
+++ b/include/u8c/dbgprint.h
@@ -14,7 +14,8 @@
If not, see <https://www.gnu.org/licenses/>.
*/
/* Debug print */
-# if !defined(u8c_dbgprint)
+# if !defined(u8c_sym_dbgprint)
+# define u8c_sym_dbgprint
# if defined(NDEBUG)
# define u8c_dbgprint(...) ((void)0x0)
# else
diff --git a/include/u8c/unimax.h b/include/u8c/unimax.h
index 10c8be6..5baa4de 100644
--- a/include/u8c/unimax.h
+++ b/include/u8c/unimax.h
@@ -14,7 +14,8 @@
If not, see <https://www.gnu.org/licenses/>.
*/
/* Unicode maximum */
-# if !defined(u8c_unimax)
+# if !defined(u8c_sym_unimax)
+# define u8c_sym_unimax
# include <stdint.h>
# include <uchar.h>
# define u8c_unimax ((char32_t)UINT32_C(0x10FFFF))
diff --git a/include/u8c/ver.h b/include/u8c/ver.h
index 054052d..3f16ae6 100644
--- a/include/u8c/ver.h
+++ b/include/u8c/ver.h
@@ -14,7 +14,8 @@
If not, see <https://www.gnu.org/licenses/>.
*/
/* Version */
-# if !defined(u8c_ver)
+# if !defined(u8c_sym_ver)
+# define u8c_sym_ver
# include <stdint.h>
-# define u8c_ver (UINT64_C(0x12))
+# define u8c_ver (UINT64_C(0x13))
# endif