mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-03 20:44:54 +01:00
12 lines
226 B
C
12 lines
226 B
C
|
#include "version.h"
|
||
|
#include "gen_version.h"
|
||
|
#include <stdio.h>
|
||
|
|
||
|
char *version_and_exit(const void *unused)
|
||
|
{
|
||
|
printf("%s\n"
|
||
|
"aka. %s\n"
|
||
|
"Built with: %s\n", VERSION, VERSION_NAME, BUILD_FEATURES);
|
||
|
exit(0);
|
||
|
}
|