From bdbf022df8d6df07ae7c69b7e386278e27804e58 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 9 Aug 1998 17:39:48 +0000 Subject: Update. 1998-08-09 09:40 Ulrich Drepper * nss/nss_files/files-XXX.c (internal_getent): In case of an read error do not trust errno value, set it to ENOENT. * db2/db_185.h: Move __ prototypes into include/* header. * dirent/dirent.h: Likewise. * elf/dlfcn.h: Likewise. * gmon/sys/gmon.h: Likewise. * grp/grp.h: Likewise. * intl/libintl.h: Likewise. * io/fcntl.h: Likewise. * io/sys/stat.h: Likewise. * io/sys/statfs.h: Likewise. * io/sys/statvfs.h: Likewise. * libio/stdio.h: Likewise. * login/utmp.h: Likewise. * misc/mntent.h: Likewise. * misc/search.h: Likewise. * misc/sys/file.h: Likewise. * misc/sys/ioctl.h: Likewise. * misc/sys/select.h: Likewise. * misc/sys/uio.h: Likewise. * misc/sys/ustat.h: Likewise. * posix/unistd.h: Likewise. * posix/sys/times.h: Likewise. * posix/sys/wait.h: Likewise. * pwd/pwd.h: Likewise. * resource/ulimit.h: Likewise. * resource/sys/resource.h: Likewise. * setjmp/setjmp.h: Likewise. * shadow/shadow.h: Likewise. * signal/signal.h: Likewise. * socket/sys/socket.h: Likewise. * stdlib/alloca.h: Likewise. * stdlib/stdlib.h: Likewise. * string/string.h: Likewise. * sysdeps/generic/sys/mman.h: Likewise. * sysdeps/unix/bsd/osf/sys/mman.h: Likewise. * sysdeps/unix/bsd/sun/sunos4/sys/mman.h: Likewise. * sysdeps/unix/bsd/ultrix4/sys/mman.h: Likewise. * sysdeps/unix/sysv/irix4/sys/mman.h: Likewise. * sysdeps/unix/sysv/linux/bits/sched.h: Likewise. * sysdeps/unix/sysv/linux/sys/mman.h: Likewise. * termios/termios.h: Likewise. * time/time.h: Likewise. * time/sys/time.h: Likewise. * wcsmbs/wchar.h: Likewise. * include/alloca.h: Add __ prototypes here. * include/db_185.h: Likewise. * include/dirent.h: Likewise. * include/dlfcn.h: Likewise. * include/fcntl.h: Likewise. * include/grp.h: Likewise. * include/libintl.h: Likewise. * include/mntent.h: Likewise. * include/pwd.h: Likewise. * include/sched.h: Likewise. * include/search.h: Likewise. * include/setjmp.h: Likewise. * include/shadow.h: Likewise. * include/signal.h: Likewise. * include/stdio.h: Likewise. * include/stdlib.h: Likewise. * include/string.h: Likewise. * include/termios.h: Likewise. * include/time.h: Likewise. * include/ulimit.h: Likewise. * include/unistd.h: Likewise. * include/utmp.h: Likewise. * include/wchar.h: Likewise. * include/sys/file.h: Likewise. * include/sys/gmon.h: Likewise. * include/sys/ioctl.h: Likewise. * include/sys/mman.h: Likewise. * include/sys/resource.h: Likewise. * include/sys/select.h: Likewise. * include/sys/socket.h: Likewise. * include/sys/stat.h: Likewise. * include/sys/statfs.h: Likewise. * include/sys/time.h: Likewise. * include/sys/times.h: Likewise. * include/sys/uio.h: Likewise. * include/sys/wait.h: Likewise. * Makeconfig (+includes): Search in $(..)include first. * io/fstat.c: Undefine __fstat. * io/lstat.c: Undefine __lstat. * wcsmbs/Versions: Add __mbrlen. --- include/unistd.h | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) (limited to 'include/unistd.h') diff --git a/include/unistd.h b/include/unistd.h index 77901d9846..f676cad415 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1 +1,63 @@ #include + +/* Now define the internal interfaces. */ +extern int __access __P ((__const char *__name, int __type)); +extern int __euidaccess __P ((__const char *__name, int __type)); +extern __off64_t __lseek64 __P ((int __fd, __off64_t __offset, int __whence)); +extern ssize_t __pread __P ((int __fd, __ptr_t __buf, size_t __nbytes, + __off_t __offset)); +extern ssize_t __pwrite __P ((int __fd, __const __ptr_t __buf, size_t __n, + __off_t __offset)); +extern int __pipe __P ((int __pipedes[2])); +extern unsigned int __sleep __P ((unsigned int __seconds)); +extern int __chown __P ((__const char *__file, + __uid_t __owner, __gid_t __group)); +extern int __fchown __P ((int __fd, + __uid_t __owner, __gid_t __group)); +extern int __lchown __P ((__const char *__file, __uid_t __owner, + __gid_t __group)); +extern int __fchdir __P ((int __fd)); +extern char *__getcwd __P ((char *__buf, size_t __size)); + +/* Get the canonical absolute name of the named directory, and put it in SIZE + bytes of BUF. Returns NULL if the directory couldn't be determined or + SIZE was too small. If successful, returns BUF. In GNU, if BUF is + NULL, an array is allocated with `malloc'; the array is SIZE bytes long, + unless SIZE <= 0, in which case it is as big as necessary. */ + +char *__canonicalize_directory_name_internal __P ((__const char *__thisdir, + char *__buf, + size_t __size)); + +extern int __dup __P ((int __fd)); +extern int __dup2 __P ((int __fd, int __fd2)); +extern int __execve __P ((__const char *__path, char *__const __argv[], + char *__const __envp[])); +extern long int __pathconf __P ((__const char *__path, int __name)); +extern long int __fpathconf __P ((int __fd, int __name)); +extern long int __sysconf __P ((int __name)); +extern __pid_t __getppid __P ((void)); +extern __pid_t __setsid __P ((void)); +extern __uid_t __getuid __P ((void)); +extern __uid_t __geteuid __P ((void)); +extern __gid_t __getgid __P ((void)); +extern __gid_t __getegid __P ((void)); +extern int __getgroups __P ((int __size, __gid_t __list[])); +extern int __group_member __P ((__gid_t __gid)); +extern int __setuid __P ((__uid_t __uid)); +extern int __setreuid __P ((__uid_t __ruid, __uid_t __euid)); +extern int __setgid __P ((__gid_t __gid)); +extern int __setregid __P ((__gid_t __rgid, __gid_t __egid)); +extern __pid_t __vfork __P ((void)); +extern int __ttyname_r __P ((int __fd, char *__buf, size_t __buflen)); +extern int __isatty __P ((int __fd)); +extern int __link __P ((__const char *__from, __const char *__to)); +extern int __symlink __P ((__const char *__from, __const char *__to)); +extern int __readlink __P ((__const char *__path, char *__buf, size_t __len)); +extern int __unlink __P ((__const char *__name)); +extern int __rmdir __P ((__const char *__path)); +extern int __gethostname __P ((char *__name, size_t __len)); +extern int __profil __P ((unsigned short int *__sample_buffer, size_t __size, + size_t __offset, unsigned int __scale)); +extern int __getdtablesize __P ((void)); +extern int __brk __P ((__ptr_t __addr)); -- cgit v1.2.3