summaryrefslogtreecommitdiff
path: root/cmd_version.c
blob: 5fe30e5e328d033c323301d0f941caac8ccfd2fd (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

#include "cmds.h"

int cmd_version(int argc, char *argv[])
{
	printf("%s\n", VERSION_STRING);
	return 0;
}