mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-11 15:50:06 +00:00
a53d3f8295
2008-01-16 Ulrich Drepper <drepper@redhat.com> [BZ #5607] * conform/data/fcntl.h-data: Fix posix_fadvise and posix_fallocate prototypes. * conform/data/limits.h-data: Adjust limits changed in v6 and add additional suffixes. * conform/data/mqueue.h-data: Fix typo in mq_curmsgs entry. Add optional functions mq_timedreceive and mq_timedsend. * conform/data/netdb.h-data: Add more AI_* and EAI_* constants. * conform/data/pthread.h-data: Fix prototype of pthread_condattr_setclock. pthread_sigmask is not required in v6. * conform/data/semaphore.h-data: Allow time.h definitions. * conform/data/signal.h-data: Likewise. * conform/data/stdio.h-data: getw and putw are not required in v6. * conform/data/stdlib.h-data: Change setstate prototype. * conform/data/string.h-data: Fix strerror_r prototype. * conform/data/time.h-data: Fix typo in TIMER_ABSTIME definition. * conform/data/unistd.h-data: pthread_atfork not required in v6. Fix readlink prototype. * conform/data/netinet/in.h-data: Add const to in6addr_any and in6addr_loopback. * inet/netinet/in.h: Cleanup namespace. * posix/regex.h: Likewise. * resolv/netdb.h: Likewise. * sysdeps/unix/sysv/linux/bits/in.h: Likewise. * sysdeps/unix/sysv/linux/bits/socket.h: Likewise. * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
constant NULL
|
|
|
|
type size_t
|
|
|
|
function {void*} memccpy (void*, const void*, int, size_t)
|
|
function {void*} memchr (const void*, int, size_t)
|
|
function int memcmp (const void*, const void*, size_t)
|
|
function {void*} memcpy (void*, const void*, size_t)
|
|
function {void*} memmove (void*, const void*, size_t)
|
|
function {void*} memset (void*, int, size_t)
|
|
function {char*} strcat (char*, const char*)
|
|
function {char*} strchr (const char*, int)
|
|
function int strcmp (const char*, const char*)
|
|
function int strcoll (const char*, const char*)
|
|
function {char*} strcpy (char*, const char*)
|
|
function size_t strcspn (const char*, const char*)
|
|
function {char*} strdup (const char*)
|
|
function {char*} strerror (int)
|
|
#ifdef XOPEN2K
|
|
function int strerror_r (int, char*, size_t)
|
|
#endif
|
|
function size_t strlen (const char*)
|
|
function {char*} strncat (char*, const char*, size_t)
|
|
function int strncmp (const char*, const char*, size_t)
|
|
function {char*} strncpy (char*, const char*, size_t)
|
|
function {char*} strpbrk (const char*, const char*)
|
|
function {char*} strrchr (const char*, int)
|
|
function size_t strspn (const char*, const char*)
|
|
function {char*} strstr (const char*, const char*)
|
|
function {char*} strtok (char*, const char*)
|
|
function {char*} strtok_r (char*, const char*, char**)
|
|
function size_t strxfrm (char*, const char*, size_t)
|
|
|
|
allow-header stddef.h
|
|
|
|
allow str*
|
|
allow wcs*
|
|
allow *_t
|