blob: 201cbbf6e16d2223c6501893ab97d1539386a7a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
$NetBSD: patch-unixserver.c,v 1.1 2020/11/18 14:31:43 schmonz Exp $
Include missing strlen declaration.
--- unixserver.c.orig 2015-08-12 03:05:40.000000000 +0000
+++ unixserver.c
@@ -1,6 +1,7 @@
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/socket.h>
|