mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
a20d8dbee7
2002-08-04 Ulrich Drepper <drepper@redhat.com> * elf/dl-addr.c (_dl_addr): Add libc_hidden_def. * elf/dl-close.c (_dl_close): Add libc_hidden_def. * elf/dl-open.c (_dl_open): Add libc_hidden_def. * include/dlfcn.h: Add libc_hidden_proto for _dl_addr, _dl_open, _dl_close. * include/libio.h: Add libc_hidden_proto for __underflow, __wuflow, __wunderflow. * libio/genops.c (__underflow): Add libc_hidden_def. * libio/wgenops.c (__wuflow): Likewise. (__wunderflow): Likewise. * include/obstack.h: Add libc_hidden_proto for _obstack_newchunk. * malloc/obstack.c (_obstack_newchunk): Add libc_hidden_def. * include/stdio.h: Add libc_hidden_proto for __vfscanf. * stdio-common/vfscanf.c (__vfscanf): Add libc_hidden_def. * include/string.h: Add libc_hidden_proto for __strverscmp. * string/strverscmp.c (__strverscmp): Add libc_hidden_def. * include/unistd.h: Add libc_hidden_proto for __sysconf. * sysdeps/generic/sysconf.c (__sysconf): Add libc_hidden_def. * sysdeps/posix/sysconf.c: Likewise. * sysdeps/unix/sysv/irix4/sysconf.c: Likewise. * sysdeps/unix/sysv/sysv4/sysconf.c: Likewise. * include/wctype.h: Use libc_hidden_proto for __iswctype, __iswalnum_l, __iswalpha_l, __iswblank_l, __iswcntrl_l, __iswdigit_l, __iswlower_l, __iswgraph_l, __iswprint_l, __iswpunct_l, __iswspace_l, __iswupper_l, __iswxdigit_l, __towlower_l, __towupper_l. * wcsmbs/wcstype.c (__iswctype): Use libc_hidden_def. * wcsmbs/wcfuncs_l.c: Use libc_hidden_def for all functions. * include/sys/wait.h: Add libc_hidden_proto for __xmknod. * sysdeps/generic/xmknod.c (__xmknod): Add libc_hidden_def. * sysdeps/mach/hurd/xmknod.c: Likewise. * sysdeps/unix/xmknod.c: Likewise. * sysdeps/unix/sysv/linux/xmknod.c: Likewise. * sysdeps/unix/sysv/linux/alpha/xmknod.c: Likewise. * sysdeps/unix/sysv/linux/mips/xmknod.c: Likewise. * sunrpc/svc.c: Add missing INTUSE for _authenticate.
63 lines
2.6 KiB
C
63 lines
2.6 KiB
C
#ifndef _SYS_STAT_H
|
|
#include <io/sys/stat.h>
|
|
|
|
/* Now define the internal interfaces. */
|
|
extern int __stat (__const char *__file, struct stat *__buf);
|
|
extern int __fstat (int __fd, struct stat *__buf);
|
|
extern int __lstat (__const char *__file, struct stat *__buf);
|
|
extern int __chmod (__const char *__file, __mode_t __mode);
|
|
extern int __fchmod (int __fd, __mode_t __mode);
|
|
extern __mode_t __umask (__mode_t __mask);
|
|
extern int __mkdir (__const char *__path, __mode_t __mode);
|
|
extern int __mknod (__const char *__path,
|
|
__mode_t __mode, __dev_t __dev);
|
|
extern int __fxstat_internal (int __ver, int __fildes,
|
|
struct stat *__stat_buf) attribute_hidden;
|
|
extern int __fxstat64_internal (int __ver, int __fildes,
|
|
struct stat64 *__stat_buf) attribute_hidden;
|
|
extern int __lxstat_internal (int __ver, __const char *__file,
|
|
struct stat *__stat_buf) attribute_hidden;
|
|
extern int __lxstat64_internal (int __ver, __const char *__file,
|
|
struct stat64 *__stat_buf) attribute_hidden;
|
|
extern __inline__ int __stat (__const char *__path, struct stat *__statbuf)
|
|
{
|
|
return __xstat (_STAT_VER, __path, __statbuf);
|
|
}
|
|
libc_hidden_proto (__xmknod)
|
|
extern __inline__ int __mknod (__const char *__path, __mode_t __mode,
|
|
__dev_t __dev)
|
|
{
|
|
return __xmknod (_MKNOD_VER, __path, __mode, &__dev);
|
|
}
|
|
|
|
|
|
/* The `stat', `fstat', `lstat' functions have to be handled special since
|
|
even while not compiling the library with optimization calls to these
|
|
functions in the shared library must reference the `xstat' etc functions.
|
|
We have to use macros but we cannot define them in the normal headers
|
|
since on user level we must use real functions. */
|
|
#define stat(fname, buf) __xstat (_STAT_VER, fname, buf)
|
|
#define lstat(fname, buf) __lxstat (_STAT_VER, fname, buf)
|
|
#define __lstat(fname, buf) __lxstat (_STAT_VER, fname, buf)
|
|
#define lstat64(fname, buf) __lxstat64 (_STAT_VER, fname, buf)
|
|
#define stat64(fname, buf) __xstat64 (_STAT_VER, fname, buf)
|
|
#ifndef NOT_IN_libc
|
|
# define fstat64(fd, buf) INTUSE(__fxstat64) (_STAT_VER, fd, buf)
|
|
# define fstat(fd, buf) INTUSE(__fxstat) (_STAT_VER, fd, buf)
|
|
# define __fstat(fd, buf) INTUSE(__fxstat) (_STAT_VER, fd, buf)
|
|
|
|
# define __fxstat(ver, fd, buf) INTUSE(__fxstat) (ver, fd, buf)
|
|
# ifndef __fxstat64
|
|
# define __fxstat64(ver, fd, buf) INTUSE(__fxstat64) (ver, fd, buf)
|
|
# endif
|
|
# define __lxstat(ver, name, buf) INTUSE(__lxstat) (ver, name, buf)
|
|
# ifndef __lxstat64
|
|
# define __lxstat64(ver, name, buf) INTUSE(__lxstat64) (ver, name, buf)
|
|
# endif
|
|
#else
|
|
# define fstat64(fd, buf) __fxstat64 (_STAT_VER, fd, buf)
|
|
# define fstat(fd, buf) __fxstat (_STAT_VER, fd, buf)
|
|
# define __fstat(fd, buf) __fxstat (_STAT_VER, fd, buf)
|
|
#endif
|
|
#endif
|