mirror of https://github.com/GOSTSec/sgminer
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
302 B
14 lines
302 B
14 years ago
|
#include <ccan/opt/opt.h>
|
||
|
#include <ccan/opt/opt.c>
|
||
|
#include <ccan/opt/helpers.c>
|
||
|
#include <ccan/opt/parse.c>
|
||
|
#include <ccan/opt/usage.c>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
opt_register_noarg("-v", opt_version_and_exit,
|
||
|
(const char *)"1.2.3",
|
||
|
(const char *)"Print version");
|
||
|
return 0;
|
||
|
}
|