mirror of git://sourceware.org/git/glibc.git
Avoid namespace pollution.
This commit is contained in:
parent
5be9d05d31
commit
440566c3f4
|
|
@ -1,3 +1,8 @@
|
||||||
|
2010-07-09 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Use __fcntl not
|
||||||
|
fcntl.
|
||||||
|
|
||||||
2010-07-06 Andreas Schwab <schwab@redhat.com>
|
2010-07-06 Andreas Schwab <schwab@redhat.com>
|
||||||
|
|
||||||
* elf/dl-version.c (match_symbol): Don't pass NULL occation to
|
* elf/dl-version.c (match_symbol): Don't pass NULL occation to
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,7 @@ __fpathconf (fd, name)
|
||||||
return __statfs_chown_restricted (__fstatfs (fd, &fsbuf), &fsbuf);
|
return __statfs_chown_restricted (__fstatfs (fd, &fsbuf), &fsbuf);
|
||||||
|
|
||||||
case _PC_PIPE_BUF:
|
case _PC_PIPE_BUF:
|
||||||
r = fcntl (fd, F_GETPIPE_SZ);
|
r = __fcntl (fd, F_GETPIPE_SZ);
|
||||||
if (r > 0)
|
if (r > 0)
|
||||||
return r;
|
return r;
|
||||||
/* FALLTHROUGH */
|
/* FALLTHROUGH */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue