1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-26 01:15:37 +00:00
elinks/src/vernum.c
Witold Filipczyk 0fea79cc8f [cflags] Removed -Wno-pointer-sign
Likely some new bugs were introduced by this change.
The long term goal is clean compilation by g++.
2021-01-02 16:20:27 +01:00

14 lines
246 B
C

/* Version numbers etc; always rebuilt to reflect the latest info */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "elinks.h"
#include "vernum.h"
char *build_date = __DATE__;
char *build_time = __TIME__;
char *build_id = BUILD_ID;