summaryrefslogtreecommitdiff
path: root/outform.h
diff options
context:
space:
mode:
authorChuck Crayne <ccrayne@users.sourceforge.net>2007-04-29 00:28:24 +0000
committerChuck Crayne <ccrayne@users.sourceforge.net>2007-04-29 00:28:24 +0000
commit1c270b7fe2b22794c7109f52d815afe9fd33a5c6 (patch)
treedd3dc8d9a24c171c4623de330fe58423f02cff64 /outform.h
parent6e61733e3801e2db3e8b0375060ce75773c8bc77 (diff)
downloadnasm-1c270b7fe2b22794c7109f52d815afe9fd33a5c6.tar.gz
nasm-1c270b7fe2b22794c7109f52d815afe9fd33a5c6.tar.bz2
nasm-1c270b7fe2b22794c7109f52d815afe9fd33a5c6.zip
Allow ELF32 to be invoked either as -f elf or -f elf32
Diffstat (limited to 'outform.h')
-rw-r--r--outform.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/outform.h b/outform.h
index 92b646f..236fd54 100644
--- a/outform.h
+++ b/outform.h
@@ -216,6 +216,7 @@ extern struct ofmt of_aout;
extern struct ofmt of_aoutb;
extern struct ofmt of_coff;
extern struct ofmt of_elf32;
+extern struct ofmt of_elf;
extern struct ofmt of_elf64;
extern struct ofmt of_as86;
extern struct ofmt of_obj;
@@ -241,6 +242,7 @@ struct ofmt *drivers[] = {
#endif
#ifdef OF_ELF32
&of_elf32,
+ &of_elf,
#endif
#ifdef OF_ELF64
&of_elf64,