diff options
author | 2004-06-08 22:02:43 +0000 | |
---|---|---|
committer | 2004-06-08 22:02:43 +0000 | |
commit | 3179e9f36d6a24b0f1f54f647fc6ffd738a1884e (patch) | |
tree | 48dc26966434bf2155724ab5749d5488d6183e3e /lib/libpthread/thread | |
parent | always create a stack frame in cpu_switch() and put a stub (diff) | |
download | wireguard-openbsd-3179e9f36d6a24b0f1f54f647fc6ffd738a1884e.tar.xz wireguard-openbsd-3179e9f36d6a24b0f1f54f647fc6ffd738a1884e.zip |
missing include; ok marc@.
Diffstat (limited to 'lib/libpthread/thread')
-rw-r--r-- | lib/libpthread/thread/thread_tag.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thread_tag.c b/lib/libpthread/thread/thread_tag.c index 43bd4c14b0e..5b45ed84f58 100644 --- a/lib/libpthread/thread/thread_tag.c +++ b/lib/libpthread/thread/thread_tag.c @@ -1,10 +1,11 @@ -/* $OpenBSD: thread_tag.c,v 1.1 2004/06/07 21:11:23 marc Exp $ */ +/* $OpenBSD: thread_tag.c,v 1.2 2004/06/08 22:02:43 xsa Exp $ */ /* PUBLIC DOMAIN: No Rights Reserved. Marco S Hyman <marc@snafu.org> */ #include <sys/time.h> #include <stdlib.h> +#include <string.h> #include "thread_private.h" #include "pthread.h" |