mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 12:50:05 +00:00
5c2a0669c1
1998-12-08 Andreas Jaeger <aj@arthur.rhein-neckar.de> * posix/regex.c: Get regex.h from system path, not from local directory. * posix/regex.h: Move internal interfaces to ... * include/regex.h: ...here. * posix/unistd.h: Move internal interfaces to ... * include/unistd.h: ...here. * math/math.h: Move internal interfaces to ... * include/math.h: ...here. * posix/glob.h: Move internal interfaces to ... * include/glob.h: ...here. * string/string.h: Move internal interfaces to ... * include/string.h: ...here. * time/sys/time.h: Move internal interfaces to ... * include/sys/time.h: ...here. * resolv/netdb.h: Move internal interfaces to ... * include/netdb.h: ...here. 1998-12-08 Ulrich Drepper <drepper@cygnus.com> * iconvdata/eucjp.c: Handle Yen in overscore conversion from ISO 10646 correctly. * iconvdata/iso-2022-jp.c: Handle Kana in 2022-JP2 correctly Fix various bugs in conversion routine. * iconvdata/jis0201.h: Correct variable name. * iconvdata/jis0208.c: Correct script to generate tables and regenerate them. * iconvdata/jis0208.h: Likewise. * iconvdata/jis0212.c: Likewise. * iconvdata/sjis.c: Likewise. Patch by HANATAKA Shinya <hanataka@abyss.rim.or.jp>.
67 lines
3.1 KiB
C
67 lines
3.1 KiB
C
#ifndef _UNISTD_H
|
|
# include <posix/unistd.h>
|
|
|
|
/* 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 __chdir __P ((__const char *__path));
|
|
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));
|
|
#endif
|