mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Update.
2002-04-21 Ulrich Drepper <drepper@redhat.com> * string/string.h: Declare strerror_r also for XPG6.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2002-04-21 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* string/string.h: Declare strerror_r also for XPG6.
|
||||||
|
|
||||||
2002-04-19 Roland McGrath <roland@frob.com>
|
2002-04-19 Roland McGrath <roland@frob.com>
|
||||||
|
|
||||||
* sysdeps/mach/hurd/tmpfile.c: Create a file descriptor and use fdopen.
|
* sysdeps/mach/hurd/tmpfile.c: Create a file descriptor and use fdopen.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1991,92,93,95,96,97,98,99,2000,2001 Free Software Foundation, Inc.
|
/* Copyright (C) 1991-1993, 1995-2001, 2002 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -227,7 +227,7 @@ extern size_t strnlen (__const char *__string, size_t __maxlen)
|
|||||||
|
|
||||||
/* Return a string describing the meaning of the `errno' code in ERRNUM. */
|
/* Return a string describing the meaning of the `errno' code in ERRNUM. */
|
||||||
extern char *strerror (int __errnum) __THROW;
|
extern char *strerror (int __errnum) __THROW;
|
||||||
#ifdef __USE_MISC
|
#if defined __USE_XOPEN2K || defined __USE_MISC
|
||||||
/* Reentrant version of `strerror'. If a temporary buffer is required, at
|
/* Reentrant version of `strerror'. If a temporary buffer is required, at
|
||||||
most BUFLEN bytes of BUF will be used. */
|
most BUFLEN bytes of BUF will be used. */
|
||||||
extern char *strerror_r (int __errnum, char *__buf, size_t __buflen) __THROW;
|
extern char *strerror_r (int __errnum, char *__buf, size_t __buflen) __THROW;
|
||||||
@ -237,7 +237,7 @@ extern char *strerror_r (int __errnum, char *__buf, size_t __buflen) __THROW;
|
|||||||
the namespace rules does not allow this. */
|
the namespace rules does not allow this. */
|
||||||
extern void __bzero (void *__s, size_t __n) __THROW;
|
extern void __bzero (void *__s, size_t __n) __THROW;
|
||||||
|
|
||||||
#if defined __USE_BSD
|
#ifdef __USE_BSD
|
||||||
/* Copy N bytes of SRC to DEST (like memmove, but args reversed). */
|
/* Copy N bytes of SRC to DEST (like memmove, but args reversed). */
|
||||||
extern void bcopy (__const void *__src, void *__dest, size_t __n) __THROW;
|
extern void bcopy (__const void *__src, void *__dest, size_t __n) __THROW;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user