From 8d4d060104dc1ab4c7977a383a8f4af54e9302c9 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Tue, 20 Apr 2010 14:55:53 +0400 Subject: [PATCH] Add "win" alias for "win32" output format We already have "elf" and "macho" aliases for respective 32 bit output formats. Make the same for "win32" in a sake of consistency. Signed-off-by: Cyrill Gorcunov --- output/outform.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/output/outform.h b/output/outform.h index 44c4c0a9..e703d99c 100644 --- a/output/outform.h +++ b/output/outform.h @@ -348,6 +348,13 @@ static struct ofmt_alias { "MACHO (short name for MACHO32)", &of_macho32, }, +#endif +#ifdef OF_WIN32 + { + "win", + "WIN (short name for WIN32)", + &of_win32, + }, #endif { NULL, NULL, NULL } };