diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-04-19 15:48:36 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-04-19 15:48:36 +0000 |
commit | 820fb4190565034c0850eaf0e239c59f20cc8d9b (patch) | |
tree | f6db36f00fbec708760557db3edf629fc9bc6a7d /lib/libc | |
parent | 18c911e14815bb0c3399d392fff2d792395ec5d7 (diff) |
avoid cranking libc minors for another few weeks
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/assert.c | 12 | ||||
-rw-r--r-- | lib/libc/shlib_version | 2 |
2 files changed, 2 insertions, 12 deletions
diff --git a/lib/libc/gen/assert.c b/lib/libc/gen/assert.c index 62f56686649..60d1ba1eecd 100644 --- a/lib/libc/gen/assert.c +++ b/lib/libc/gen/assert.c @@ -32,7 +32,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: assert.c,v 1.3 2002/04/17 16:00:34 espie Exp $"; +static char *rcsid = "$OpenBSD: assert.c,v 1.4 2002/04/19 15:48:35 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -51,13 +51,3 @@ __assert(file, line, failedexpr) abort(); /* NOTREACHED */ } - -void -__assert2(const char *file, int line, const char *func, const char *failedexpr) -{ - (void)fprintf(stderr, - "assertion \"%s\" failed: file \"%s\", line %d, function \"%s\"\n", - failedexpr, file, line, func); - abort(); - /* NOTREACHED */ -} diff --git a/lib/libc/shlib_version b/lib/libc/shlib_version index 0a19050cd2f..51feb7c82c1 100644 --- a/lib/libc/shlib_version +++ b/lib/libc/shlib_version @@ -1,2 +1,2 @@ major=28 -minor=4 # note: remember to update minor in ../libc_r/shlib_version +minor=3 # note: remember to update minor in ../libc_r/shlib_version |