diff options
author | chl <> | 2007-09-05 20:47:47 +0000 |
---|---|---|
committer | chl <> | 2007-09-05 20:47:47 +0000 |
commit | c3de96f3bd88d1d2bcc870d6998753b93832adc0 (patch) | |
tree | 4d99ed1c98bfc2bfe550dce1ebae6a29fbcdd7b7 | |
parent | 6e5aa8758fb4e98e94a2f964e0eb926ceb6920a4 (diff) | |
download | openbsd-c3de96f3bd88d1d2bcc870d6998753b93832adc0.tar.gz openbsd-c3de96f3bd88d1d2bcc870d6998753b93832adc0.tar.bz2 openbsd-c3de96f3bd88d1d2bcc870d6998753b93832adc0.zip |
Add missing header to avoid warning
ok millert@ ray@
-rw-r--r-- | src/lib/libc/stdlib/atexit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libc/stdlib/atexit.c b/src/lib/libc/stdlib/atexit.c index ebf5f8775c..4d28fb5ef6 100644 --- a/src/lib/libc/stdlib/atexit.c +++ b/src/lib/libc/stdlib/atexit.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: atexit.c,v 1.13 2007/09/03 14:40:16 millert Exp $ */ | 1 | /* $OpenBSD: atexit.c,v 1.14 2007/09/05 20:47:47 chl Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2002 Daniel Hartmeier | 3 | * Copyright (c) 2002 Daniel Hartmeier |
4 | * All rights reserved. | 4 | * All rights reserved. |
@@ -32,6 +32,7 @@ | |||
32 | #include <sys/types.h> | 32 | #include <sys/types.h> |
33 | #include <sys/mman.h> | 33 | #include <sys/mman.h> |
34 | #include <stdlib.h> | 34 | #include <stdlib.h> |
35 | #include <string.h> | ||
35 | #include <unistd.h> | 36 | #include <unistd.h> |
36 | #include "atexit.h" | 37 | #include "atexit.h" |
37 | #include "thread_private.h" | 38 | #include "thread_private.h" |