17 lines
274 B
17 lines
274 B
10 years ago
|
#include "gen_version.h"
|
||
9 years ago
|
#include "version.h"
|
||
10 years ago
|
#include <stdio.h>
|
||
|
|
||
9 years ago
|
const char *version(void)
|
||
|
{
|
||
|
return VERSION;
|
||
|
}
|
||
|
|
||
10 years ago
|
char *version_and_exit(const void *unused)
|
||
|
{
|
||
|
printf("%s\n"
|
||
|
"aka. %s\n"
|
||
|
"Built with: %s\n", VERSION, VERSION_NAME, BUILD_FEATURES);
|
||
|
exit(0);
|
||
|
}
|