mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Update.
2001-08-20 Ulrich Drepper <drepper@redhat.com> * include/dirent.h: Include <dirstream.h> first.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2001-08-20 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* include/dirent.h: Include <dirstream.h> first.
|
||||||
|
|
||||||
2001-08-19 Ulrich Drepper <drepper@redhat.com>
|
2001-08-19 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* io/fts.c (fts_safe_changedir): Use __fxstat64 instead of __fstat.
|
* io/fts.c (fts_safe_changedir): Use __fxstat64 instead of __fstat.
|
||||||
|
@ -1712,9 +1712,9 @@ __argp_error (const struct argp_state *state, const char *fmt, ...)
|
|||||||
{
|
{
|
||||||
char *buf;
|
char *buf;
|
||||||
|
|
||||||
asprintf (&buf, fmt, ap);
|
__asprintf (&buf, fmt, ap);
|
||||||
|
|
||||||
fwprintf (stream, L"%s: %s\n",
|
__fwprintf (stream, L"%s: %s\n",
|
||||||
state ? state->name : program_invocation_short_name,
|
state ? state->name : program_invocation_short_name,
|
||||||
buf);
|
buf);
|
||||||
|
|
||||||
@ -1787,9 +1787,9 @@ __argp_failure (const struct argp_state *state, int status, int errnum,
|
|||||||
{
|
{
|
||||||
char *buf;
|
char *buf;
|
||||||
|
|
||||||
asprintf (&buf, fmt, ap);
|
__asprintf (&buf, fmt, ap);
|
||||||
|
|
||||||
fwprintf (stream, L": %s", buf);
|
__fwprintf (stream, L": %s", buf);
|
||||||
|
|
||||||
free (buf);
|
free (buf);
|
||||||
}
|
}
|
||||||
@ -1811,7 +1811,7 @@ __argp_failure (const struct argp_state *state, int status, int errnum,
|
|||||||
|
|
||||||
#ifdef USE_IN_LIBIO
|
#ifdef USE_IN_LIBIO
|
||||||
if (_IO_fwide (stream, 0) > 0)
|
if (_IO_fwide (stream, 0) > 0)
|
||||||
fwprintf (stream, ": %s",
|
__fwprintf (stream, ": %s",
|
||||||
__strerror_r (errnum, buf, sizeof (buf)));
|
__strerror_r (errnum, buf, sizeof (buf)));
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#ifndef _DIRENT_H
|
#ifndef _DIRENT_H
|
||||||
|
# include <dirstream.h>
|
||||||
# include <dirent/dirent.h>
|
# include <dirent/dirent.h>
|
||||||
|
|
||||||
/* Now define the internal interfaces. */
|
/* Now define the internal interfaces. */
|
||||||
|
Reference in New Issue
Block a user