diff options
author | 2000-01-06 08:45:50 +0000 | |
---|---|---|
committer | 2000-01-06 08:45:50 +0000 | |
commit | 21baaa01c37dddb666c68ec6a12cef233a4fdd9b (patch) | |
tree | ee72cae575bef0b05254a86bc55eeac8eb29d4fe /lib/libc/stdlib/exit.c | |
parent | LIBCR_SRCDIR (diff) | |
download | wireguard-openbsd-21baaa01c37dddb666c68ec6a12cef233a4fdd9b.tar.xz wireguard-openbsd-21baaa01c37dddb666c68ec6a12cef233a4fdd9b.zip |
include thread_private.h
Diffstat (limited to 'lib/libc/stdlib/exit.c')
-rw-r--r-- | lib/libc/stdlib/exit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdlib/exit.c b/lib/libc/stdlib/exit.c index bc7fd395ca3..ab53f9400bc 100644 --- a/lib/libc/stdlib/exit.c +++ b/lib/libc/stdlib/exit.c @@ -32,12 +32,13 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: exit.c,v 1.3 1998/11/20 11:18:50 d Exp $"; +static char *rcsid = "$OpenBSD: exit.c,v 1.4 2000/01/06 08:45:50 d Exp $"; #endif /* LIBC_SCCS and not lint */ #include <stdlib.h> #include <unistd.h> #include "atexit.h" +#include "thread_private.h" void (*__cleanup)(); |