mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
5b3bde715a
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
17 lines
274 B
C
17 lines
274 B
C
#include "gen_version.h"
|
|
#include "version.h"
|
|
#include <stdio.h>
|
|
|
|
const char *version(void)
|
|
{
|
|
return VERSION;
|
|
}
|
|
|
|
char *version_and_exit(const void *unused)
|
|
{
|
|
printf("%s\n"
|
|
"aka. %s\n"
|
|
"Built with: %s\n", VERSION, VERSION_NAME, BUILD_FEATURES);
|
|
exit(0);
|
|
}
|