From: Ian Jackson Date: Thu, 11 Aug 2022 17:53:55 +0000 (+0100) Subject: prefork-interp: Add missing symbols X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=f42ccaaf2f41237b55e7bb7c102e6513c388f4c6;p=chiark-utils.git prefork-interp: Add missing symbols Signed-off-by: Ian Jackson --- diff --git a/cprogs/prefork-interp.c b/cprogs/prefork-interp.c index 2215ded..63bff8b 100644 --- a/cprogs/prefork-interp.c +++ b/cprogs/prefork-interp.c @@ -87,6 +87,8 @@ #include "prefork.h" +const char our_name[] = "prefork-interp"; + struct sockaddr_un sun; #define ACK_BYTE '\n' @@ -94,6 +96,15 @@ struct sockaddr_un sun; static struct sockaddr_un socket_sun; static const char *const *executor_argv; +void fusagemessage(FILE *f) { + fprintf(f, "usage: #!/usr/bin/prefork-interp []\n"); +} + +const struct cmdinfo cmdinfos[]= { + PREFORK_CMDINFOS + { 0 } +}; + static void propagate_exit_status(int status, const char *what) { int r;