diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2007-09-05 20:47:48 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2007-09-05 20:47:48 +0000 |
commit | 3165ded00498aa74b63ebe81faef57519c6553e6 (patch) | |
tree | 398366d7d2947450ad6c18153f899690720edfc2 /lib | |
parent | 24dd72f13d3889b1f55f1ececfc71a981a838165 (diff) |
Add missing header to avoid warning
ok millert@ ray@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/stdlib/atexit.c | 3 |
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" |