diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2020-01-27 15:46:06 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2020-01-27 15:46:06 +0000 |
commit | b5eba018a0a948d7757448d4cd70fe33cb6b71a0 (patch) | |
tree | 7a00533384303e4802df1e935d50397decb9395b /src/caches/shibari.c | |
parent | 7e3beac8435b957a583559d13f7666631719d15f (diff) | |
download | s6-dns-b5eba018a0a948d7757448d4cd70fe33cb6b71a0.tar.xz |
Add shibari, prepare for 2.3.2.0dcache
Diffstat (limited to 'src/caches/shibari.c')
-rw-r--r-- | src/caches/shibari.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/caches/shibari.c b/src/caches/shibari.c new file mode 100644 index 0000000..77334f6 --- /dev/null +++ b/src/caches/shibari.c @@ -0,0 +1,14 @@ +/* ISC license. */ + +#include <skalibs/sgetopt.h> +#include <skalibs/strerr2.h> + +#include <s6-dns/s6dns.h> + +#define USAGE "shibari [ -m max ] [ -i ipsend ] [ [ -u uid ] [ -g gid ] | [ -U ] ]" +#define dieusage() strerr_dieusage(100, USAGE) + +int main (int argc, char const *const *argv) +{ + return 0 ; +} |