summaryrefslogtreecommitdiff
path: root/preproc.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2002-09-12 02:23:54 +0000
committerH. Peter Anvin <hpa@zytor.com>2002-09-12 02:23:54 +0000
commitbfebdb0a071fe4f657e9505331ea8cb210c9d9b9 (patch)
tree106c0ea14c4a0d9c3d02dcbea31195c37e9eb208 /preproc.h
parent3ab3f41305fef3bc81f7add649100c986b82487c (diff)
downloadnasm-bfebdb0a071fe4f657e9505331ea8cb210c9d9b9.tar.gz
nasm-bfebdb0a071fe4f657e9505331ea8cb210c9d9b9.tar.bz2
nasm-bfebdb0a071fe4f657e9505331ea8cb210c9d9b9.zip
"const"-ipation fixes from Trevor Woerner
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 e2756cc..0b7df11 100644
--- a/preproc.h
+++ b/preproc.h
@@ -13,7 +13,7 @@ void pp_include_path (char *);
void pp_pre_include (char *);
void pp_pre_define (char *);
void pp_pre_undefine (char *);
-void pp_extra_stdmac (char **);
+void pp_extra_stdmac (const char **);
extern Preproc nasmpp;