0
0
forked from aniani/nasm

Remove unnecessary C99-isms

In order to make it more likely to compile cleanly with "C90 plus long
long" style compilers, remove existing constructs (mostly commas at
the end of enums) that aren't compliant.

Ironically enough this was most likely an unintentional omission in
C90...

From master branch checkin 7214d18b40

Resolved Conflicts:
	output/outelf32.c

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin
2016-03-01 22:43:51 -08:00
parent 8d9f591005
commit 53f1559c06
9 changed files with 28 additions and 26 deletions

View File

@@ -89,7 +89,7 @@ enum symbol_type {
SYMTYPE_LDATA,
SYMTYPE_GDATA,
SYMTYPE_MAX,
SYMTYPE_MAX
};
struct cv8_symbol {
@@ -113,7 +113,7 @@ struct cv8_symbol {
TYPE_REAL80 = 0x0042,
TYPE_REAL128= 0x0043,
TYPE_REAL256= 0x0044,
TYPE_REAL512= 0x0045,
TYPE_REAL512= 0x0045
} symtype;
};