diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2002-09-06 22:48:35 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2002-09-06 22:48:35 +0000 |
commit | 7dfda9f18312e783397713e7a955ce8066dbcd3c (patch) | |
tree | d3d345e765c5ac45a167fa15dc0bb2697d5d9f66 /lib/libc/stdlib | |
parent | 20c3b5410fe96bc22c56feab305a3a0a7a18c39d (diff) |
missing include, ok theo
Diffstat (limited to 'lib/libc/stdlib')
-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 92c4884f28f..da5a0ddda03 100644 --- a/lib/libc/stdlib/atexit.c +++ b/lib/libc/stdlib/atexit.c @@ -29,12 +29,13 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: atexit.c,v 1.5 2002/08/30 07:58:07 dhartmei Exp $"; +static char *rcsid = "$OpenBSD: atexit.c,v 1.6 2002/09/06 22:48:34 henning Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> #include <sys/mman.h> #include <stdlib.h> +#include <unistd.h> #include "atexit.h" int __atexit_invalid = 1; |