diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-06-25 14:54:14 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-06-25 14:54:14 -0700 |
commit | 7e50d232ba791dccab9eba0639fcfa4fc685dc7f (patch) | |
tree | 2eeaef0b34e1a1a72234352582d5584adfedbd92 /preproc.h | |
parent | 7b5aad8498f6cb6e65e1c9646965e393a28b5dc0 (diff) | |
download | nasm-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 *); |