mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[vernum] const char *
This commit is contained in:
parent
155cc0c005
commit
cfb5c38f99
@ -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;
|
||||||
|
@ -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 */
|
||||||
|
Loading…
Reference in New Issue
Block a user