summaryrefslogtreecommitdiff
path: root/ver.c
blob: ae2c329509a39ea4fd03b3737ae9a930cc573eb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "nasm.h"
#include "version.h"

/* This is printed when entering nasm -v */
const char nasm_version[] = NASM_VER;
const char nasm_date[] = __DATE__;
const char nasm_compile_options[] = ""
#ifdef DEBUG
    " with -DDEBUG"
#endif
    ;

/* These are used by some backends. */
const char nasm_comment[] =
    "The Netwide Assembler " NASM_VER;

const char nasm_signature[] =
    "NASM " NASM_VER;