diff options
author | Chuck Crayne <ccrayne@users.sourceforge.net> | 2007-04-29 00:28:24 +0000 |
---|---|---|
committer | Chuck Crayne <ccrayne@users.sourceforge.net> | 2007-04-29 00:28:24 +0000 |
commit | 1c270b7fe2b22794c7109f52d815afe9fd33a5c6 (patch) | |
tree | dd3dc8d9a24c171c4623de330fe58423f02cff64 /outform.h | |
parent | 6e61733e3801e2db3e8b0375060ce75773c8bc77 (diff) | |
download | nasm-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.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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, |