summaryrefslogtreecommitdiff
path: root/preproc.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-06-25 14:54:14 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-06-25 14:54:14 -0700
commit7e50d232ba791dccab9eba0639fcfa4fc685dc7f (patch)
tree2eeaef0b34e1a1a72234352582d5584adfedbd92 /preproc.h
parent7b5aad8498f6cb6e65e1c9646965e393a28b5dc0 (diff)
downloadnasm-7e50d232ba791dccab9eba0639fcfa4fc685dc7f.tar.gz
nasm-7e50d232ba791dccab9eba0639fcfa4fc685dc7f.tar.bz2
nasm-7e50d232ba791dccab9eba0639fcfa4fc685dc7f.zip
Make the macros table "unsigned char"
It gets less ugly if we make the macros table "unsigned char".
Diffstat (limited to 'preproc.h')
-rw-r--r--preproc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/preproc.h b/preproc.h
index a0f1a70..ff1e371 100644
--- a/preproc.h
+++ b/preproc.h
@@ -15,7 +15,7 @@ extern const char * const pp_directives[];
extern const uint8_t pp_directives_len[];
/* Pointer to a macro chain */
-typedef const char macros_t;
+typedef const unsigned char macros_t;
enum preproc_token pp_token_hash(const char *token);
void pp_include_path(char *);