summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2005-08-21 12:35:00 +0000
committergrant <grant@pkgsrc.org>2005-08-21 12:35:00 +0000
commit38130a4ab9385ade63618cf8e19441680631aeee (patch)
tree874067d1e878dc269dd7fedafaa2794afdaeadf3 /bootstrap
parentc9d355c6017f2f9e449e3c1b88b12a9df72114f7 (diff)
downloadpkgsrc-38130a4ab9385ade63618cf8e19441680631aeee.tar.gz
#include <string.h> for memcpy() on Solaris 10.
from John Heasley in PR pkg/30544.
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/bmake/sigcompat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bootstrap/bmake/sigcompat.c b/bootstrap/bmake/sigcompat.c
index 4b44d07eef7..674b426e870 100644
--- a/bootstrap/bmake/sigcompat.c
+++ b/bootstrap/bmake/sigcompat.c
@@ -98,11 +98,12 @@
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)sigcompat.c 5.3 (Berkeley) 2/24/91";*/
-static char *rcsid = "$Id: sigcompat.c,v 1.1.1.1 2004/03/11 13:04:12 grant Exp $";
+static char *rcsid = "$Id: sigcompat.c,v 1.2 2005/08/21 12:35:00 grant Exp $";
#endif /* LIBC_SCCS and not lint */
#undef signal
#include <stdio.h>
+#include <string.h>
#include <sys/param.h>
#include <sys/cdefs.h>
#include "assert.h"