glibc/sysdeps/mach/hurd
Ulrich Drepper 0501d60367 Update.
1997-05-24 03:51  Ulrich Drepper  <drepper@cygnus.com>

	* stdlib/Makefile (routines): Add strtol_l, strtoul_l, strtoll_l,
	strtoull_l, strtof_l, strtod_l, and strtold_l.
	* stdlib/stdlib.h: Add prototypes for new functions.
	* stdlib/strtod.c: Change for compiling as strtoX_l.
	* stdlib/strtol.c: Likewise.
	* stdlib/strtof.c: Likewise.
	* stdlib/strtold.c: Likewise.
	* stdlib/strtod_l.c: New file.
	* stdlib/strtof_l.c: New file.
	* stdlib/strtold_l.c: New file.
	* stdlib/strtol_l.c: New file.
	* stdlib/strtoul_l.c: New file.
	* stdlib/strtoll_l.c: New file.
	* stdlib/strtoull_l.c: New file.
	* string/Makefile (routines): Add strcasecmp_l and strncase_l.
	* string/string.h: Add prototypes for new functions.
	* sysdeps/generic/strcasecmp.c: Change for compiling as strcasecmp_l.
	* sysdeps/generic/strncase.c: Change for compiling as strncasecmp_l.
	* sysdeps/generic/strcasecmp_l.c: New file.
	* sysdeps/generic/strncase_l.c: New file.
	* wcsmbs/Makefile (routines): Add wcstol_l, wcstoul_l, wcstoll_l,
	wcstoull_l, wcstod_l, wcstold_l, wcstof_l, wcscasecmp_l, and
	wcsncase_l.
	* wcsmbs/wchar.h: Add prototypes for new functions.
	* wcsmbs/wcscasecmp.c: Change for compiling as wcscasecmp_l.
	* wcsmbs/wcsncase.c: Change for compiling as wcsncasecmp_l.
	* wcsmbs/wcscasecmp_l.c: New file.
	* wcsmbs/wcsncase_l.c: New file.
	* wcsmbs/wcstof.c: Change for compiling as wcstof_l.c
	* wcsmbs/wcstold.c: Change for compiling as wcstold_l.c
	* wcsmcs/wcstod_l.c: New file.
	* wcsmcs/wcstof_l.c: New file.
	* wcsmcs/wcstold_l.c: New file.
	* wcsmcs/wcstol_l.c: New file.
	* wcsmcs/wcstoul_l.c: New file.
	* wcsmcs/wcstoll_l.c: New file.
	* wcsmcs/wcstoull_l.c: New file.

	* Makeconfig (binfmt-subdir): New variable.  Set to `elf' if
	$(elf) is defined.  More to come later when other binary formats
	are supported.
	* Makefile (subdirs): Remove elf.  Add $(binfmt-subdir).
	Suggested by Philip Blundell.

	* stdlib/Makefile (headers): Add fmtmsg.h.
	(routines): Add fmtmsg.
	* stdlib/fmtmsg.c: New file.
	* stdlib/fmtmsg.h: New file.
	* manual/stdio.texi: Add description of fmtmsg and addseverity.
	* manual/examples/fmtmsgexpl.c: Example program for fmtmsg
	documentation.

1997-05-23 15:26  Philip Blundell  <pjb27@cam.ac.uk>

	* resolv/res_query.c (res_querydomain): Avoid potential buffer
	overrun.  Reported by Dan A. Dickey <ddickey@transition.com>.

1997-05-22 18:36  Thomas Bushnell, n/BSG  <thomas@gnu.ai.mit.edu>

	* elf/dl-support.c (_dl_sysdep_open_zero_fill,
	_dl_sysdep_read_whole_file): Moved functions to ...
	* elf/dl-misc.c: This new file.
	* sysdeps/generic/dl-sysdepio.c: Delete file and move functions...
	* elf/dl-misc.c: ... here.
	* sysdeps/generic/dl-sysdep.c (_dl_sysdep_open_zero_fill,
	_dl_sysdep_read_whole_file): Delete functions; they now come from
	elf/dl-misc.c (dl-support.c had contained identical versions).
	* sysdeps/mach/hurd/dl-sysdepio.c: Delete file; move functions...
	* sysdeps/mach/hurd/dl-sysdep.c: ... here, but mark them weak so
	that the regular ones in dl-misc work once we've initialized.
	* elf/Makefile (dl-routines): Remove dl-sysdepio.c.  Add dl-misc.c.

1997-05-22 21:55  Philip Blundell  <pjb27@cam.ac.uk>

	* inet/Makefile (headers): Add netinet/inbits.h.
	* inet/netinet/in.h: New file.
	* sysdeps/generic/netinet/inbits.h: Likewise.
	* sysdeps/unix/sysv/linux/netinet/inbits.h: Likewise.
	* sysdeps/generic/netinet/ip6.h: Move to...
	* inet/netinet/ip6.h: ... here.
	* sysdeps/generic/netinet/icmp6.h: Move to...
	* inet/netinet/icmp6.h: ... here.
	* sysdeps/unix/sysv/linux/netinet/in.h: Remove.
	* sysdeps/generic/netinet/in.h: Remove.

1997-05-22 05:40  Richard Henderson  <rth@tamu.edu>

	* sysdeps/alpha/dl-machine.h (elf_machine_runtime_setup): If we are
	not looking at the new thread-safe .plt, don't be lazy about relocs.
	(_dl_runtime_resolve): Fix up arithmetic for new .plt layout.
	(elf_alpha_fix_plt): Insert wmb as appropriate to ensure safety.
	* elf/dynamic-link.h (ELF_DYNAMIC_RELOCATE): Let
	elf_machine_runtime_setup() decide if we can actually be lazy.
	* elf/rtld.c (_dl_start): So don't call it.
	* elf/dl-reloc.c (_dl_relocate_object): Likewise.
	* sysdeps/i386/dl-machine.h (elf_machine_runtime_setup): Return lazy.
	* sysdeps/m68k/dl-machine.h (elf_machine_runtime_setup): Likewise.
	* sysdeps/mips/dl-machine.h (elf_machine_runtime_setup): Likewise.
	* sysdeps/powerpc/dl-machine.h (elf_machine_runtime_setup): Likewise.
	* sysdeps/sparc/dl-machine.h (elf_machine_runtime_setup): Likewise.
	* sysdeps/stub/dl-machine.h (elf_machine_runtime_setup): Update
	skeleton definition.

1997-05-22 18:45  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/i386/fpu/__math.h (logb): Remove second value placed on
	stack by fxtract.

1997-05-22 13:07  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* sunrpc/rpcsvc/rusers.x: Provide and correct prototypes,
	add cast to (xdrproc_t) where necessary to prevent warnings.

1997-05-22 12:18  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c: Remove I/O functions.

	* sunrpc/rpcinfo.c (get_inet_address): Use INADDR_NONE and INADDR_ANY
	* sysdeps/libm-ieee754/s_cexp.c: Fix typo: string_alias ->
	* nss/XXX-lookup.c: Add missing explanation.
1997-05-24 02:30:09 +00:00
..
alpha *** empty log message *** 1996-09-11 02:48:08 +00:00
hppa Mon Aug 14 16:51:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-08-14 22:49:23 +00:00
i386 (__libc_argv, __libc_argc): Make extern. (__hurd_threadvar_max, __hurd_threadvar_stack_offset, __hurd_threadvar_stack_mask): New variables. 1997-02-23 22:09:31 +00:00
mips *** empty log message *** 1996-09-11 02:48:08 +00:00
sys (NBBY): New macro. 1995-12-06 14:13:00 +00:00
_exit.c Tue May 7 19:00:01 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-08 02:07:47 +00:00
.cvsignore initial import 1995-02-18 01:27:10 +00:00
accept.c (__libc_argv, __libc_argc): Make extern. (__hurd_threadvar_max, __hurd_threadvar_stack_offset, __hurd_threadvar_stack_mask): New variables. 1997-02-23 22:09:31 +00:00
access.c *** empty log message *** 1996-06-19 22:38:55 +00:00
adjtime.c initial import 1995-02-18 01:27:10 +00:00
bind.c Tue May 7 19:00:01 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-08 02:07:47 +00:00
brk.c Thu Jun 20 12:18:21 1996 Miles Bader <miles@gnu.ai.mit.edu> 1996-06-20 21:32:45 +00:00
chdir.c * hurd/hurd/lookup.h: New file. 1995-10-16 02:51:06 +00:00
chflags.c initial import 1995-02-18 01:27:10 +00:00
chmod.c initial import 1995-02-18 01:27:10 +00:00
chown.c initial import 1995-02-18 01:27:10 +00:00
chroot.c (__libc_argv, __libc_argc): Make extern. (__hurd_threadvar_max, __hurd_threadvar_stack_offset, __hurd_threadvar_stack_mask): New variables. 1997-02-23 22:09:31 +00:00
close.c initial import 1995-02-18 01:27:10 +00:00
closedir.c Update. 1996-08-07 23:50:59 +00:00
configure update from main archive 970121 1997-01-23 04:24:20 +00:00
configure.in update from main archive 970121 1997-01-23 04:24:20 +00:00
connect.c * posix/glob.h (__glob_opendir_hook, __glob_readdir_hook, 1996-07-09 23:17:59 +00:00
defs.c (__libc_argv, __libc_argc): Make extern. (__hurd_threadvar_max, __hurd_threadvar_stack_offset, __hurd_threadvar_stack_mask): New variables. 1997-02-23 22:09:31 +00:00
dirfd.c Update from main archive 961219 1996-12-20 01:39:50 +00:00
dirstream.h Regenerated 1996-07-26 00:34:28 +00:00
Dist update from main archive 961126 1996-11-27 06:13:15 +00:00
dl-cache.c *** empty log message *** 1996-09-13 05:28:59 +00:00
dl-sysdep.c Update. 1997-05-24 02:30:09 +00:00
dup2.c Wed May 3 11:56:35 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-05-04 09:00:10 +00:00
err_hurd.sub initial import 1995-02-18 01:27:10 +00:00
errnos.awk update from main archive 1996-09-27 03:45:24 +00:00
errnos.h Regenerated from sysdeps/mach/hurd/errnos.awk manual/errno.texi /home/hi2/build/i486-gnu/libc/config.h libintl.h intl/libintl.h features.h sys/cdefs.h misc/sys/cdefs.h /usr/lib/gcc-lib/i486-gnu-miles/2.7.2/include/stddef.h locale.h locale/locale.h /gd4/gnu/miles/i486-gnu/install/include/mach/message.h /gd4/gnu/miles/i486-gnu/install/include/mach/kern_return.h /gd4/gnu/miles/i486-gnu/install/include/mach/machine/kern_return.h /gd4/gnu/miles/i486-gnu/install/include/mach/port.h /gd4/gnu/miles/i486-gnu/install/include/mach/boolean.h /gd4/gnu/miles/i486-gnu/install/include/mach/machine/boolean.h /gd4/gnu/miles/i486-gnu/install/include/mach/machine/vm_types.h /gd4/gnu/miles/i486-gnu/install/include/mach/mig_errors.h /gd4/gnu/miles/i486-gnu/install/include/device/device_types.h /gd4/gnu/miles/i486-gnu/install/include/mach/std_types.h 1996-11-12 22:22:42 +00:00
euidaccess.c Update. 1997-03-16 20:28:07 +00:00
execve.c initial import 1995-02-18 01:27:10 +00:00
fchdir.c Wed Feb 7 18:48:30 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1996-02-08 02:10:15 +00:00
fchflags.c initial import 1995-02-18 01:27:10 +00:00
fchmod.c initial import 1995-02-18 01:27:10 +00:00
fchown.c initial import 1995-02-18 01:27:10 +00:00
fcntl.c (__fcntl): Add missing break after F_SETFL. 1996-04-25 20:21:20 +00:00
fcntlbits.h update from main archive 970226 1997-02-27 06:01:16 +00:00
fdatasync.c Tue May 7 19:00:01 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-08 02:07:47 +00:00
fdopen.c initial import 1995-02-18 01:27:10 +00:00
fexecve.c initial import 1995-02-18 01:27:10 +00:00
flock.c initial import 1995-02-18 01:27:10 +00:00
fork.c Sat May 4 05:44:25 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-04 09:46:57 +00:00
fpathconf.c Tue May 7 19:00:01 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-08 02:07:47 +00:00
fstatfs.c Tue Apr 23 15:56:56 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-04-24 00:58:47 +00:00
fsync.c Tue May 7 19:00:01 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-08 02:07:47 +00:00
ftruncate.c Sun Sep 17 18:29:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-09-18 03:28:15 +00:00
fxstat.c Wed Jan 17 11:04:58 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1996-01-18 00:35:55 +00:00
getcwd.c Upadte. 1996-08-28 00:26:07 +00:00
getdents.c update from main archive 970121 1997-01-23 04:24:20 +00:00
getdtsz.c Sat May 6 11:06:47 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-05-08 09:11:25 +00:00
getegid.c initial import 1995-02-18 01:27:10 +00:00
geteuid.c initial import 1995-02-18 01:27:10 +00:00
getgid.c initial import 1995-02-18 01:27:10 +00:00
getgroups.c initial import 1995-02-18 01:27:10 +00:00
gethostid.c * hurd/Makefile (routines): Add get-host, set-host. 1996-06-16 03:49:40 +00:00
gethostname.c * hurd/Makefile (routines): Add get-host, set-host. 1996-06-16 03:49:40 +00:00
getitimer.c initial import 1995-02-18 01:27:10 +00:00
getlogin_r.c Update from main archive 961219 1996-12-20 01:39:50 +00:00
getlogin.c initial import 1995-02-18 01:27:10 +00:00
getpeername.c initial import 1995-02-18 01:27:10 +00:00
getpgid.c initial import 1995-02-18 01:27:10 +00:00
getpid.c initial import 1995-02-18 01:27:10 +00:00
getppid.c initial import 1995-02-18 01:27:10 +00:00
getpriority.c (getpriority): Use new interface to __proc_getprocinfo. 1996-06-07 21:49:06 +00:00
getrlimit.c Update. 1996-08-07 23:50:59 +00:00
getsid.c Mon Nov 27 19:24:18 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-11-28 10:00:22 +00:00
getsockname.c initial import 1995-02-18 01:27:10 +00:00
getsockopt.c initial import 1995-02-18 01:27:10 +00:00
getuid.c initial import 1995-02-18 01:27:10 +00:00
group_member.c Tue Oct 31 00:07:29 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-10-31 06:54:40 +00:00
Implies Wed May 22 01:48:54 1996 Ulrich Drepper <drepper@cygnus.com> 1996-05-22 02:11:55 +00:00
ioctl.c Fri Nov 15 12:27:25 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> 1996-11-15 19:50:04 +00:00
ioctls.h *** empty log message *** 1996-07-09 05:02:06 +00:00
isatty.c initial import 1995-02-18 01:27:10 +00:00
jmp-unwind.c update from main archive 961217 1996-12-18 03:23:47 +00:00
kill.c Sat May 4 05:44:25 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-04 09:46:57 +00:00
lchown.c Fri Nov 15 12:27:25 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> 1996-11-15 19:50:04 +00:00
libc_p-ldscript update from main archive 961203 1996-12-04 01:41:39 +00:00
libc-ldscript update from main archive 961203 1996-12-04 01:41:39 +00:00
link.c Tue May 7 19:00:01 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-08 02:07:47 +00:00
listen.c initial import 1995-02-18 01:27:10 +00:00
local_lim.h update from main archive 961114 1996-11-15 04:08:00 +00:00
lseek.c initial import 1995-02-18 01:27:10 +00:00
lxstat.c Wed Jan 17 11:04:58 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1996-01-18 00:35:55 +00:00
Makefile update from main archive 970121 1997-01-23 04:24:20 +00:00
mig-reply.c (__mig_dealloc_reply_port): Only attempt to destroy PORT if it's a valid port name. 1996-04-06 01:49:21 +00:00
mkdir.c Sun Jan 28 17:25:38 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1996-01-28 22:47:31 +00:00
mmap.c Tue Jul 16 16:43:58 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-16 21:19:13 +00:00
open.c initial import 1995-02-18 01:27:10 +00:00
opendir.c Update. 1996-08-07 23:50:59 +00:00
pathconf.c Mon Sep 18 12:39:22 1995 Paul Eggert <eggert@twinsun.com> 1995-09-18 19:00:32 +00:00
pipe.c Update from main archive 961219 1996-12-20 01:39:50 +00:00
pipestream.c *** empty log message *** 1996-10-08 18:38:08 +00:00
posix_opt.h update from main archive 970118 1997-01-19 04:54:28 +00:00
prof-freq.c update from main archive 960909 1996-09-10 02:00:15 +00:00
profil.c *** empty log message *** 1996-09-06 00:08:55 +00:00
ptrace.c Sat May 4 05:44:25 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-04 09:46:57 +00:00
read.c initial import 1995-02-18 01:27:10 +00:00
readdir_r.c *** empty log message *** 1996-10-08 18:38:08 +00:00
readdir.c Update. 1996-08-07 23:50:59 +00:00
readlink.c (__libc_argv, __libc_argc): Make extern. (__hurd_threadvar_max, __hurd_threadvar_stack_offset, __hurd_threadvar_stack_mask): New variables. 1997-02-23 22:09:31 +00:00
reboot.c initial import 1995-02-18 01:27:10 +00:00
recv.c initial import 1995-02-18 01:27:10 +00:00
recvfrom.c (accept): If the protocol family can't tell us what an address means, just return a zero-length buffer instead. 1995-07-30 00:37:36 +00:00
rename.c Tue May 7 19:00:01 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-08 02:07:47 +00:00
rewinddir.c initial import 1995-02-18 01:27:10 +00:00
rmdir.c initial import 1995-02-18 01:27:10 +00:00
sbrk.c initial import 1995-02-18 01:27:10 +00:00
seekdir.c Tue Jul 9 09:37:55 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-09 14:49:13 +00:00
select.c Update from main archive 961219 1996-12-20 01:39:50 +00:00
send.c update from main archive 960904 1996-09-05 02:49:18 +00:00
sendto.c *** empty log message *** 1996-09-06 00:08:55 +00:00
setegid.c Fri Dec 22 00:57:38 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-12-22 10:00:21 +00:00
seteuid.c Fri Dec 22 00:57:38 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-12-22 10:00:21 +00:00
setgid.c Rewritten. 1996-01-04 00:06:01 +00:00
setgroups.c initial import 1995-02-18 01:27:10 +00:00
sethostid.c * hurd/Makefile (routines): Add get-host, set-host. 1996-06-16 03:49:40 +00:00
sethostname.c * hurd/Makefile (routines): Add get-host, set-host. 1996-06-16 03:49:40 +00:00
setitimer.c Update. 1997-05-21 01:48:59 +00:00
setlogin.c initial import 1995-02-18 01:27:10 +00:00
setpgid.c Tue Mar 19 14:18:42 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu> 1996-03-19 20:21:54 +00:00
setpriority.c * sysdeps/mach/hurd/getpriority.c (getpriority): Pass 1995-11-01 10:00:20 +00:00
setregid.c Fri Dec 22 00:57:38 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-12-22 10:00:21 +00:00
setreuid.c Fri Dec 22 00:57:38 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-12-22 10:00:21 +00:00
setrlimit.c initial import 1995-02-18 01:27:10 +00:00
setsid.c initial import 1995-02-18 01:27:10 +00:00
setsockopt.c initial import 1995-02-18 01:27:10 +00:00
settimeofday.c initial import 1995-02-18 01:27:10 +00:00
setuid.c Fri Dec 22 00:38:00 1995 H.J. Lu <hjl@nynexst.com> 1995-12-23 01:14:10 +00:00
shutdown.c initial import 1995-02-18 01:27:10 +00:00
sigaction.c Thu Jun 6 16:12:39 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-06-06 20:49:22 +00:00
sigaltstack.c initial import 1995-02-18 01:27:10 +00:00
sigpending.c initial import 1995-02-18 01:27:10 +00:00
sigprocmask.c Sat May 4 05:44:25 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-04 09:46:57 +00:00
sigstack.c initial import 1995-02-18 01:27:10 +00:00
sigsuspend.c Sat May 4 05:44:25 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-04 09:46:57 +00:00
sigwait.c *** empty log message *** 1997-01-17 19:27:54 +00:00
socket.c *** empty log message *** 1996-08-16 20:42:32 +00:00
socketpair.c Sun Jul 21 01:44:39 1996 Miles Bader <miles@gnu.ai.mit.edu> 1996-07-21 06:52:29 +00:00
statbuf.h Fri Nov 15 12:27:25 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> 1996-11-15 19:50:04 +00:00
statfs.c Tue Apr 23 15:56:56 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-04-24 00:58:47 +00:00
stdio_init.c initial import 1995-02-18 01:27:10 +00:00
Subdirs initial import 1995-02-18 01:27:10 +00:00
symlink.c Tue May 7 19:00:01 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-08 02:07:47 +00:00
sync.c initial import 1995-02-18 01:27:10 +00:00
sysd-stdio.c Tue May 7 10:51:52 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-07 14:57:38 +00:00
telldir.c * sysdeps/mach/hurd/dirstream.h: Define `struct __dirstream' 1995-08-28 09:00:05 +00:00
truncate.c Sun Sep 17 18:29:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-09-18 03:28:15 +00:00
ttyname_r.c update from main arcive 961210 1996-12-11 01:40:39 +00:00
ttyname.c initial import 1995-02-18 01:27:10 +00:00
umask.c initial import 1995-02-18 01:27:10 +00:00
uname.c <unistd.h>: New include. 1996-07-21 02:57:09 +00:00
unlink.c initial import 1995-02-18 01:27:10 +00:00
utimes.c initial import 1995-02-18 01:27:10 +00:00
vdprintf.c update from main archive 970124 1997-01-25 02:36:37 +00:00
wait4.c *** empty log message *** 1996-10-08 18:38:08 +00:00
write.c initial import 1995-02-18 01:27:10 +00:00
xmknod.c update from main arcive 961210 1996-12-11 01:40:39 +00:00
xstat.c Wed Jan 17 11:04:58 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1996-01-18 00:35:55 +00:00