summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorCharles Longeau <chl@cvs.openbsd.org>2007-09-05 20:47:48 +0000
committerCharles Longeau <chl@cvs.openbsd.org>2007-09-05 20:47:48 +0000
commit3165ded00498aa74b63ebe81faef57519c6553e6 (patch)
tree398366d7d2947450ad6c18153f899690720edfc2 /lib
parent24dd72f13d3889b1f55f1ececfc71a981a838165 (diff)
Add missing header to avoid warning
ok millert@ ray@
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/stdlib/atexit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdlib/atexit.c b/lib/libc/stdlib/atexit.c
index ebf5f8775c7..4d28fb5ef69 100644
--- a/lib/libc/stdlib/atexit.c
+++ b/lib/libc/stdlib/atexit.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: atexit.c,v 1.13 2007/09/03 14:40:16 millert Exp $ */
+/* $OpenBSD: atexit.c,v 1.14 2007/09/05 20:47:47 chl Exp $ */
/*
* Copyright (c) 2002 Daniel Hartmeier
* All rights reserved.
@@ -32,6 +32,7 @@
#include <sys/types.h>
#include <sys/mman.h>
#include <stdlib.h>
+#include <string.h>
#include <unistd.h>
#include "atexit.h"
#include "thread_private.h"