summaryrefslogtreecommitdiff
path: root/macros.pl
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2002-05-14 23:54:46 +0000
committerH. Peter Anvin <hpa@zytor.com>2002-05-14 23:54:46 +0000
commit0a7a3b459cbf908404e3d3d80f15dad6b1c62e79 (patch)
tree3993e942dc865d96a93741f128ebcd88bc049be1 /macros.pl
parent310b3e165f86d6655bf68bd89ff9309aa63663f2 (diff)
downloadnasm-0a7a3b459cbf908404e3d3d80f15dad6b1c62e79.tar.gz
Change "const static" -> "static const" to keep gcc happy
Diffstat (limited to 'macros.pl')
-rw-r--r--macros.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/macros.pl b/macros.pl
index a0fc97ef..38168cf8 100644
--- a/macros.pl
+++ b/macros.pl
@@ -19,7 +19,7 @@ undef $tasm_count;
open OUTPUT,">macros.c" || die "unable to open macros.c\n";
print OUTPUT "/* This file auto-generated from standard.mac by macros.pl" .
-" - don't edit it */\n\n#include <stddef.h>\n\nconst static char *stdmac[] = {\n";
+" - don't edit it */\n\n#include <stddef.h>\n\nstatic const char *stdmac[] = {\n";
foreach $fname ( @ARGV ) {
open INPUT,$fname || die "unable to open $fname\n";