aboutsummaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-04-03 11:06:36 +0200
committerMattias Andrée <maandree@kth.se>2021-04-03 11:06:36 +0200
commitcfc081f9c4f5f538145cbd93f98f714d0be1dad0 (patch)
treeaa9c213cb875568d11194c10f92849605d2d3c0d /common.h
parentUse strcmpnul (diff)
downloadcontacts-cfc081f9c4f5f538145cbd93f98f714d0be1dad0.tar.gz
contacts-cfc081f9c4f5f538145cbd93f98f714d0be1dad0.tar.bz2
contacts-cfc081f9c4f5f538145cbd93f98f714d0be1dad0.tar.xz
m + Add multicall binary
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'common.h')
-rw-r--r--common.h20
1 files changed, 17 insertions, 3 deletions
diff --git a/common.h b/common.h
index 14c3319..f4e1dad 100644
--- a/common.h
+++ b/common.h
@@ -1,4 +1,18 @@
/* See LICENSE file for copyright and license details. */
-#include "libcontacts.h"
-#include "libsimple.h"
-#include "libsimple-arg.h"
+#include <libcontacts.h>
+#include <libsimple.h>
+#include <libsimple-arg.h>
+
+
+#ifdef MULTICALL_BINARY
+# undef NUSAGE
+# define NUSAGE(STATUS, SYNOPSIS)\
+ static _LIBSIMPLE_NORETURN void\
+ usage(void)\
+ {\
+ const char *syn = SYNOPSIS ? SYNOPSIS : "";\
+ fprintf(stderr, "usage: %s%s%s\n", argv0, *syn ? " " : "", syn);\
+ exit(STATUS);\
+ }\
+ extern char *argv0
+#endif