blob: 71c322bd7afa09300de7f13587d032b4a095787e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "config.h"
const char *
picosat_version (void)
{
return PICOSAT_VERSION;
}
const char *
picosat_config (void)
{
return PICOSAT_CC " " PICOSAT_CFLAGS;
}
|