mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
ea30c34d82
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
22 lines
400 B
C
22 lines
400 B
C
#include "version.h"
|
|
#include <ccan/compiler/compiler.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
/* Only common/version.c can safely include this. */
|
|
# include "version_gen.h"
|
|
|
|
const char *version(void)
|
|
{
|
|
return VERSION;
|
|
}
|
|
|
|
char *version_and_exit(const void *unused UNUSED)
|
|
{
|
|
printf("%s\n", VERSION);
|
|
if (BUILD_FEATURES[0]) {
|
|
printf("Built with features: %s\n", BUILD_FEATURES);
|
|
}
|
|
exit(0);
|
|
}
|