summaryrefslogtreecommitdiff
path: root/ndisasm.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-10-31 16:53:49 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-10-31 16:53:49 -0700
commit4b9358928b114caaf34a69d6fdfd3b285b7a72cc (patch)
treeb531697231b1ac88943dd32c4fa434c746a40f66 /ndisasm.c
parentdcd3a21145ef08583c1e242594777bf1625bf989 (diff)
downloadnasm-4b9358928b114caaf34a69d6fdfd3b285b7a72cc.tar.gz
nasm-4b9358928b114caaf34a69d6fdfd3b285b7a72cc.tar.bz2
nasm-4b9358928b114caaf34a69d6fdfd3b285b7a72cc.zip
Move all version strings to a single compilation unit (ver.c)
Move all the version strings to a single compilation unit, ver.c; this does not include the version macros, which are fed into macros.c. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'ndisasm.c')
-rw-r--r--ndisasm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ndisasm.c b/ndisasm.c
index b5001bd..766119b 100644
--- a/ndisasm.c
+++ b/ndisasm.c
@@ -90,8 +90,8 @@ int main(int argc, char **argv)
case 'r':
case 'v':
fprintf(stderr,
- "NDISASM version %s compiled " __DATE__ "\n",
- NASM_VER);
+ "NDISASM version %s compiled on %s\n",
+ nasm_version, nasm_date);
return 0;
case 'u': /* -u for -b 32, -uu for -b 64 */
if (bits < 64)