diff options
author | Roland McGrath <roland@gnu.org> | 2004-04-29 21:55:45 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2004-04-29 21:55:45 +0000 |
commit | 6f0b2e1f0fd3f2ce5a983c2e768619bb2739d8dd (patch) | |
tree | 89c8f1da730e421c3ceef3258f85d8144a3f1a1c /string | |
parent | 420a2f8b8dfe796e5f38da1e233ee99be6ec028f (diff) | |
download | glibc-6f0b2e1f0fd3f2ce5a983c2e768619bb2739d8dd.tar glibc-6f0b2e1f0fd3f2ce5a983c2e768619bb2739d8dd.tar.gz glibc-6f0b2e1f0fd3f2ce5a983c2e768619bb2739d8dd.tar.bz2 glibc-6f0b2e1f0fd3f2ce5a983c2e768619bb2739d8dd.zip |
[BZ #130, BZ #131]
2004-04-28 Carlos O'Donell <carlos@baldric.uwo.ca>
* sysdeps/unix/sysv/linux/mq_getattr.c: Include <stddef.h>.
* sysdeps/unix/sysv/linux/mq_notify.c: Likewise.
* sysdeps/unix/sysv/linux/mq_open.c: Likewise.
* sysdeps/unix/sysv/linux/mq_receive.c: Likewise.
* sysdeps/unix/sysv/linux/mq_send.c: Likewise.
* manual/resource.texi (sched_setaffinity, sched_getaffinity): Fix
prototypes and description [BZ #131].
* string/bits/string2.h (strpbrk): Cast NULL to char * [BZ #130].
Patch by Ed Catmur <ed@catmur.co.uk>.
* string/tst-inlcall.c (main): Add test for strpbrk.
Diffstat (limited to 'string')
-rw-r--r-- | string/bits/string2.h | 4 | ||||
-rw-r--r-- | string/tst-inlcall.c | 9 |
2 files changed, 10 insertions, 3 deletions
diff --git a/string/bits/string2.h b/string/bits/string2.h index 1a58716710..01ef975c7b 100644 --- a/string/bits/string2.h +++ b/string/bits/string2.h @@ -1,5 +1,5 @@ /* Machine-independant string function optimizations. - Copyright (C) 1997-2002, 2003 Free Software Foundation, Inc. + Copyright (C) 1997-2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -1019,7 +1019,7 @@ __strspn_c3 (__const char *__s, int __accept1, int __accept2, int __accept3) ({ char __a0, __a1, __a2; \ (__builtin_constant_p (accept) && __string2_1bptr_p (accept) \ ? ((__a0 = ((__const char *) (accept))[0], __a0 == '\0') \ - ? ((void) (s), NULL) \ + ? ((void) (s), (char *) NULL) \ : ((__a1 = ((__const char *) (accept))[1], __a1 == '\0') \ ? strchr (s, __a0) \ : ((__a2 = ((__const char *) (accept))[2], __a2 == '\0') \ diff --git a/string/tst-inlcall.c b/string/tst-inlcall.c index 9edc973259..2a4124ea50 100644 --- a/string/tst-inlcall.c +++ b/string/tst-inlcall.c @@ -1,5 +1,5 @@ /* Tester for calling inline string functions. - Copyright (C) 1998, 2000 Free Software Foundation, Inc. + Copyright (C) 1998, 2000, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -62,6 +62,13 @@ main (void) ++errors; } + const char * const hw = "hello world"; + if (strpbrk (hw, "o") - hw != 4) + { + puts ("strpbrk test 1 failed"); + ++errors; + } + if (errors == 0) { status = EXIT_SUCCESS; |