diff options
author | phk <phk@FreeBSD.org> | 2005-12-23 12:28:10 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2005-12-23 12:28:10 +0000 |
commit | fc4af16293b1158c6a7e8c5bf02843d70eb5c751 (patch) | |
tree | 479a4867c82e5b152dcc2dcc08a1871e37739b52 /include | |
parent | 62bc67a6199ae9362a25f9e214379f6da87c3067 (diff) | |
download | FreeBSD-src-fc4af16293b1158c6a7e8c5bf02843d70eb5c751.zip FreeBSD-src-fc4af16293b1158c6a7e8c5bf02843d70eb5c751.tar.gz |
Add abort2() prototype
Diffstat (limited to 'include')
-rw-r--r-- | include/stdlib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 051e52c..1cc6c37 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -80,6 +80,7 @@ extern int __mb_cur_max; __BEGIN_DECLS void abort(void) __dead2; +void abort2(const char *, int, void **) __dead2; int abs(int) __pure2; int atexit(void (*)(void)); double atof(const char *); |