summaryrefslogtreecommitdiff
path: root/lib/libpthread
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-11-02 23:52:47 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-11-02 23:52:47 +0000
commite730c48540f0d62e4c88cf0ed153b7a4c957448b (patch)
treec3fd8bcfc603b511fa111830aa7e42978a82eb0b /lib/libpthread
parent22603dfd44b3f7740bc0fde90ce7f5062edcdbb8 (diff)
Include string.h to get memcpy() prototype; OK marc@
Diffstat (limited to 'lib/libpthread')
-rw-r--r--lib/libpthread/uthread/uthread_sig.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libpthread/uthread/uthread_sig.c b/lib/libpthread/uthread/uthread_sig.c
index be4e5c8323c..c3b6f435e5a 100644
--- a/lib/libpthread/uthread/uthread_sig.c
+++ b/lib/libpthread/uthread/uthread_sig.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uthread_sig.c,v 1.14 2002/10/30 19:11:56 marc Exp $ */
+/* $OpenBSD: uthread_sig.c,v 1.15 2002/11/02 23:52:46 millert Exp $ */
/*
* Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>
* All rights reserved.
@@ -32,6 +32,7 @@
*
* $FreeBSD: uthread_sig.c,v 1.20 1999/09/29 15:18:39 marcel Exp $
*/
+#include <string.h>
#include <signal.h>
#include <fcntl.h>
#include <unistd.h>