From f42ccaaf2f41237b55e7bb7c102e6513c388f4c6 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 11 Aug 2022 18:53:55 +0100 Subject: [PATCH] prefork-interp: Add missing symbols Signed-off-by: Ian Jackson --- cprogs/prefork-interp.c | 11 +++++++++++ 1 file changed, 11 insertions(+) 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; -- 2.30.2