1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

[vernum] const char *

This commit is contained in:
Witold Filipczyk 2021-12-05 16:01:12 +01:00
parent 155cc0c005
commit cfb5c38f99
2 changed files with 6 additions and 4 deletions

View File

@ -8,6 +8,6 @@
#include "vernum.h" #include "vernum.h"
char *build_date = __DATE__; const char *build_date = __DATE__;
char *build_time = __TIME__; const char *build_time = __TIME__;
char *build_id = BUILD_ID; const char *build_id = BUILD_ID;

View File

@ -2,6 +2,8 @@
#ifndef EL__VERNUM_H #ifndef EL__VERNUM_H
#define EL__VERNUM_H #define EL__VERNUM_H
extern char *build_date, *build_time, *build_id; extern const char *build_date;
extern const char *build_time;
extern const char *build_id;
#endif /* EL__VERNUM_H */ #endif /* EL__VERNUM_H */