diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-06-24 13:08:20 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-06-24 13:08:20 +0000 |
commit | d0db5f488d9a47947c49f728ca29077c0cff48b1 (patch) | |
tree | c6e132fdf05a3cee02a24e742629b0120ed28920 /assert | |
parent | d6a1bbed9be8572844eeab92eb1a7845b557f401 (diff) | |
download | glibc-d0db5f488d9a47947c49f728ca29077c0cff48b1.tar.gz |
Update.
1999-06-24 Thorsten Kukuk <kukuk@suse.de>
* nscd/grpcache.c: Add "notfound" data to cache, not iov pointer.
* nscd/pwdcache.c: Likewise.
* nscd/hstcache.c: Likewise.
Diffstat (limited to 'assert')
-rw-r--r-- | assert/assert.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assert/assert.h b/assert/assert.h index 386e80c3b1..326183a272 100644 --- a/assert/assert.h +++ b/assert/assert.h @@ -90,7 +90,7 @@ __END_DECLS This is broken in G++ before version 2.6. C9x has a similar variable called __func__, but prefer the GCC one since it demangles C++ function names. */ -# if __GNUC_PREREQ (2, (defined __cplusplus ? 6 : 4)) +# if defined __cplusplus ? __GNUC_PREREQ (2, 6) : __GNUC_PREREQ (2, 4) # define __ASSERT_FUNCTION __PRETTY_FUNCTION__ # else # if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L |