unix/fiss

src/fsvs/message.h in master
Repositories | Summary | Log | Files | LICENSE

message.h (359B) download


 1#pragma once
 2
 3#define FISS_VERSION_STRING "fiss version v" SV_VERSION ""
 4
 5enum prog {
 6	PROG_FINIT,
 7	PROG_FSVC,
 8	PROG_FSVS,
 9	PROG_HALT,
10	PROG_POWEROFF,
11	PROG_REBOOT,
12	PROG_SEEDRNG,
13	PROG_SIGREMAP,
14	PROG_VLOGGER,
15	PROG_ZZZ
16};
17
18void print_usage_exit(enum prog prog, int status) __attribute__((noreturn));
19void print_version_exit(void) __attribute__((noreturn));