diff options
author | David Herrmann <dh.herrmann@googlemail.com> | 2012-12-10 15:23:10 +0100 |
---|---|---|
committer | David Herrmann <dh.herrmann@googlemail.com> | 2012-12-10 15:23:10 +0100 |
commit | e3c9bcfb154701eb2a38202ed17d8afe064256aa (patch) | |
tree | 2ab1232c145d53d456c7de4d3aeabd5e188ff869 /src/tsm_unicode.h | |
parent | 98970835d9c15543617d3bae5d75c17669366946 (diff) |
tsm: unicode: fix header-protection namespace
TSM is no longer part of main-kmscon libraries so move macro-names to
TSM_* prefix.
Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Diffstat (limited to 'src/tsm_unicode.h')
-rw-r--r-- | src/tsm_unicode.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tsm_unicode.h b/src/tsm_unicode.h index aaa7abb..e2b23a6 100644 --- a/src/tsm_unicode.h +++ b/src/tsm_unicode.h @@ -30,8 +30,8 @@ * and output much easier. */ -#ifndef KMSCON_UNICODE_H -#define KMSCON_UNICODE_H +#ifndef TSM_UNICODE_H +#define TSM_UNICODE_H #include <inttypes.h> #include <stdlib.h> @@ -85,4 +85,4 @@ int tsm_utf8_mach_feed(struct tsm_utf8_mach *mach, char c); uint32_t tsm_utf8_mach_get(struct tsm_utf8_mach *mach); void tsm_utf8_mach_reset(struct tsm_utf8_mach *mach); -#endif /* KMSCON_UNICODE_H */ +#endif /* TSM_UNICODE_H */ |