Add copyright notice to insns.dat
[nasm.git] / ver.c
blobae2c329509a39ea4fd03b3737ae9a930cc573eb3
1 #include "nasm.h"
2 #include "version.h"
4 /* This is printed when entering nasm -v */
5 const char nasm_version[] = NASM_VER;
6 const char nasm_date[] = __DATE__;
7 const char nasm_compile_options[] = ""
8 #ifdef DEBUG
9 " with -DDEBUG"
10 #endif
13 /* These are used by some backends. */
14 const char nasm_comment[] =
15 "The Netwide Assembler " NASM_VER;
17 const char nasm_signature[] =
18 "NASM " NASM_VER;