summaryrefslogtreecommitdiff
path: root/preproc.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-06-21 18:18:41 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-06-21 18:18:41 -0700
commit18ed99daea99d9a8b159b4243ba37ef3adc88b81 (patch)
tree930c5c05808a0ee57a72ecbe285f2c4e6e4c7c89 /preproc.h
parentcda816306d437d4b7c170afcd983263b5fb83c17 (diff)
downloadnasm-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/preproc.h b/preproc.h
index 1c52682..a0f1a70 100644
--- a/preproc.h
+++ b/preproc.h
@@ -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;