From fab656f5a776f09596b9e74f9a43f8300dd724c7 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 15 Apr 2002 05:35:10 +0000 Subject: Update. * include/sys/stat.h: Add prototypes for __lxstat_internal and __lxstat64_internal. Add macros __lxstat and __lxstat64 if not NOT_IN_libc. * sysdeps/generic/lxstat.c: Use INTDEF for __lxstat. * sysdeps/mach/hurd/lxstat.c: Likewise. * sysdeps/unix/common/lxstat.c: Likewise. * sysdeps/unix/sysv/aix/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/i386/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/ia64/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/s390/s390-64/lxstat.c: Likewise. * sysdeps/generic/lxstat64.c: Use INTDEF for __lxstat64. * sysdeps/mach/hurd/lxstat64.c: Likewise. * sysdeps/unix/sysv/aix/lxstat64.c: Likewise. * sysdeps/unix/sysv/linuxx/lxstat64.c: Likewise. * include/wchar.h: Declare __mbrtowc_internal and __mbrlen_internal prototypes. Add __mbrlen and __mbrtowc macros. * wcsmbs/mbrlen.c: Use INTDEF for __mbrlen. * wcsmbs/mbrtowc.c: Use INTDEF for __mbrtowc. * include/unistd.h: Add prototype for __write_internal and add __libc_write macro is SHARED. * sysdeps/generic/write.c: Use INTDEF for __write. * sysdeps/mach/hurd/write.c: Likewise. * sysdeps/unix/sysv/aix/write.c: Likewise. * sysdeps/unix/syscalls.list: Add __libc_write alias. * assert/assert.c: Replace STR_N_SIZE with something usable in macro arguments. * assert/assert-perr.c: Likewise. --- include/sys/stat.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include/sys/stat.h') diff --git a/include/sys/stat.h b/include/sys/stat.h index 16ae6c7125..dc9232df32 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -15,6 +15,10 @@ 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); @@ -43,6 +47,8 @@ extern __inline__ int __mknod (__const char *__path, __mode_t __mode, # define __fxstat(ver, fd, buf) INTUSE(__fxstat) (ver, fd, buf) # define __fxstat64(ver, fd, buf) INTUSE(__fxstat64) (ver, fd, buf) +# define __lxstat(ver, name, buf) INTUSE(__lxstat) (ver, name, buf) +# define __lxstat64(ver, name, buf) INTUSE(__lxstat64) (ver, name, buf) #else # define fstat64(fd, buf) __fxstat64 (_STAT_VER, fd, buf) # define fstat(fd, buf) __fxstat (_STAT_VER, fd, buf) -- cgit v1.2.3