diff options
author | 1996-10-25 07:06:37 +0000 | |
---|---|---|
committer | 1996-10-25 07:06:37 +0000 | |
commit | 143a84019ee159813a77bf1f905853a5f17125a7 (patch) | |
tree | de9a0659154b80c26629c0bf8511a590e45ccb32 /lib/libc/stdlib/abort.c | |
parent | Added CDE dtterm capability. (diff) | |
download | wireguard-openbsd-143a84019ee159813a77bf1f905853a5f17125a7.tar.xz wireguard-openbsd-143a84019ee159813a77bf1f905853a5f17125a7.zip |
add decl
Diffstat (limited to 'lib/libc/stdlib/abort.c')
-rw-r--r-- | lib/libc/stdlib/abort.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/stdlib/abort.c b/lib/libc/stdlib/abort.c index 8f326d15dbe..630f377f75e 100644 --- a/lib/libc/stdlib/abort.c +++ b/lib/libc/stdlib/abort.c @@ -32,13 +32,15 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: abort.c,v 1.3 1996/10/25 03:09:15 tholo Exp $"; +static char *rcsid = "$OpenBSD: abort.c,v 1.4 1996/10/25 07:06:37 downsj Exp $"; #endif /* LIBC_SCCS and not lint */ #include <signal.h> #include <stdlib.h> #include <unistd.h> +void (*__cleanup)(); + void abort() { |