diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-10-25 07:06:38 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-10-25 07:06:38 +0000 |
commit | 14267671fded5e2fb8e05448370cc7d5edb1a1a1 (patch) | |
tree | 0d624888da555d6a9c557253cec2c4f735311d89 /lib/libc/stdlib/abort.c | |
parent | ff081540bbd2978ce8d7b1a9e0fdf5146c66a8a9 (diff) |
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() { |