diff options
author | d <> | 2000-01-06 08:45:50 +0000 |
---|---|---|
committer | d <> | 2000-01-06 08:45:50 +0000 |
commit | 57a9adae477abe664687758a1fcff978095b6018 (patch) | |
tree | f9221a4268eac12422979c391695daefcc8f7ee3 /src | |
parent | 94a1d2c92c358b3f1ac01c21eec21764b6af857c (diff) | |
download | openbsd-57a9adae477abe664687758a1fcff978095b6018.tar.gz openbsd-57a9adae477abe664687758a1fcff978095b6018.tar.bz2 openbsd-57a9adae477abe664687758a1fcff978095b6018.zip |
include thread_private.h
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libc/stdlib/exit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libc/stdlib/exit.c b/src/lib/libc/stdlib/exit.c index bc7fd395ca..ab53f9400b 100644 --- a/src/lib/libc/stdlib/exit.c +++ b/src/lib/libc/stdlib/exit.c | |||
@@ -32,12 +32,13 @@ | |||
32 | */ | 32 | */ |
33 | 33 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 34 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | static char *rcsid = "$OpenBSD: exit.c,v 1.3 1998/11/20 11:18:50 d Exp $"; | 35 | static char *rcsid = "$OpenBSD: exit.c,v 1.4 2000/01/06 08:45:50 d Exp $"; |
36 | #endif /* LIBC_SCCS and not lint */ | 36 | #endif /* LIBC_SCCS and not lint */ |
37 | 37 | ||
38 | #include <stdlib.h> | 38 | #include <stdlib.h> |
39 | #include <unistd.h> | 39 | #include <unistd.h> |
40 | #include "atexit.h" | 40 | #include "atexit.h" |
41 | #include "thread_private.h" | ||
41 | 42 | ||
42 | void (*__cleanup)(); | 43 | void (*__cleanup)(); |
43 | 44 | ||