diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-06-21 18:18:41 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-06-21 18:18:41 -0700 |
commit | 18ed99daea99d9a8b159b4243ba37ef3adc88b81 (patch) | |
tree | 930c5c05808a0ee57a72ecbe285f2c4e6e4c7c89 /preproc.h | |
parent | cda816306d437d4b7c170afcd983263b5fb83c17 (diff) | |
download | nasm-18ed99daea99d9a8b159b4243ba37ef3adc88b81.tar.gz nasm-18ed99daea99d9a8b159b4243ba37ef3adc88b81.tar.bz2 nasm-18ed99daea99d9a8b159b4243ba37ef3adc88b81.zip |
pp_directives_len can be uint8_t
Save a few hundred bytes...
Diffstat (limited to 'preproc.h')
-rw-r--r-- | preproc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ #include "pptok.h" extern const char * const pp_directives[]; -extern const int pp_directives_len[]; +extern const uint8_t pp_directives_len[]; /* Pointer to a macro chain */ typedef const char macros_t; |