24 lines
591 B
Diff
24 lines
591 B
Diff
From 466a788c7533b19f20f6d91514773e89e87f5f6e Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= <arsen@aarsen.me>
|
|
Date: Wed, 6 Oct 2021 11:37:14 +0200
|
|
Subject: [PATCH 1/2] fix building on musl
|
|
|
|
---
|
|
parpd.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/parpd.c b/parpd.c
|
|
index a178696..19e266c 100644
|
|
--- a/parpd.c
|
|
+++ b/parpd.c
|
|
@@ -57,6 +57,7 @@ const char copyright[] = "Copyright (c) 2008-2017 Roy Marples";
|
|
#include <search.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
+#include <signal.h>
|
|
#include <string.h>
|
|
#include <syslog.h>
|
|
#include <unistd.h>
|
|
--
|
|
2.32.0
|
|
|