blob: 89db68e834333ac3168c86319715e13725657071 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* ISC license. */
#include <skalibs/sgetopt.h>
#include <skalibs/strerr2.h>
#define USAGE "s6-rc-update [ -l live ]"
#define dieusage() strerr_dieusage(100, USAGE)
int main (int argc, char const *const *argv)
{
PROG = "s6-rc-update" ;
strerr_dief1x(100, "this utility has not been written yet.") ;
}
|