glibc/sysdeps/generic
Ulrich Drepper af6f39063b Update.
1997-10-26 18:12  Ulrich Drepper  <drepper@cygnus.com>

	* libio/genops.c: Partial undo of last patch.
	* libio/stdfiles.c: Likewise.
	* libio/iofdopen.c: Use _IO_FILE_complete, not _IO_file_plus.
	* libio/iopopen.c: Likewise.
	* libio/iovdprintf.c: Likewise.
	* libio/libio.h: Remove duplicated `;'.
	* libio/stdio.c: Remove misleading comment.
	* libio/stdio.h: Declare standard streams as variables.

	* login/Makefile (distribute): Add README.utmpd.
	* login/README.utmpd: New file.
	Provided by Mark M. Kettenis <kettenis@phys.uva.nl>.

	* manual/job.texi: Document tcgetsid.
	* manual/pattern.texi: Document globfree.
	* manual/terminal.texi: Document B38400 ... B460800.

	* posix/confstr.c: Print "-D_FILE_OFFSET_SIZE=64" for _CS_LFS_CFLAGS.

	* posix/unistd.h: Add explanation of _POSIX_* constants.

	* posix/unists.h: Add prototypes for __pread, __pread64, __pwrite
	and __pwrite64.
	* sysdeps/generic/pread.c: Define as __pread and make pread weak alias.
	* sysdeps/generic/pread64.c: Likewise.
	* sysdeps/generic/pwrite.c: Likewise.
	* sysdeps/generic/pwrite64.c: Likewise.
	* sysdeps/posix/pread.c: Likewise.
	* sysdeps/posix/pwrite.c: Likewise.
	* sysdeps/posix/pread64.c: New file.
	* sysdeps/posix/pwrite64.c: Likewise.
	* sysdeps/unix/sysv/linux/Makefile [$(subdir)=posix] (sysdep_routines):
	Add s_pread64 and s_pwrite64.
	* sysdeps/unix/sysv/linux/pread.c: New file.
	* sysdeps/unix/sysv/linux/pread64.c: New file.
	* sysdeps/unix/sysv/linux/pwrite.c: New file.
	* sysdeps/unix/sysv/linux/pwrite64.c: New file.
	* sysdeps/unix/sysv/linux/s_pread64.c: New file.
	* sysdeps/unix/sysv/linux/s_pwrite64.c: New file.
	* sysdeps/unix/sysv/linux/syscalls.list: Add pread and pwrite.
	* sysdeps/unix/sysv/linux/alpha/pread64.c: New (empty) file.
	* sysdeps/unix/sysv/linux/alpha/pwrite64.c: New (empty) file.
	* sysdeps/unix/sysv/linux/sparc/sparc64/pread64.c: New (empty) file.
	* sysdeps/unix/sysv/linux/sparc/sparc64/pwrite64.c: New (empty) file.
	* sysdeps/unix/sysv/linux/alpha/syscalls.list: Add pread and pwrite
	with weak aliases for *64 functions.
	* sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Likewise.

	* string/bits/string2.h: Add casts to allow void * arguments.

	* sysdeps/i386/i486/bits/string.h: Define index and rindex only if
	__USE_BSD or __USE_XOPEN_EXTENDED.

	* sysdeps/unix/sysv/linux/bits/socket.h: Add SCM_RIGHTS and other
	SCM_* constants from kernel header.

	* termios/termios.h: Add prototype for tcgetsid.

1997-10-26 13:26  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>

	* sunrpc/clnt_perr.c: Add trailing '\0' to strings.

	* sunrpc/get_myaddr.c: Include rpc/clnt.h for prototypes.

	* sunrpc/pmap_clnt.c: Use get_myaddress from header file.

1997-10-26 05:26  Ulrich Drepper  <drepper@cygnus.com>

	* configure.in: Punt if any directory mentioned in the
	enable-add-on parameter does not exist.

1997-10-25 19:25  Ulrich Drepper  <drepper@cygnus.com>

	* termios/Makefile (routines): Add tcgetsid.
	* termios/tcgetsid.c: New file.
	Provided by Mark M. Kettenis <kettenis@phys.uva.nl>.

1997-10-25 18:56  Ulrich Drepper  <drepper@cygnus.com>

	* stdlib/stdlib.h: Remove mblen optimization.
	* stdlib/mblen.c: Rewrite to make sure global state is not changed.
	Reported by anderson@metrolink.com.

1997-10-19 21:51  Wolfram Gloger  <wg@wolfram.dent.med.uni-muenchen.de>

	* malloc/thread-m.h [_LIBC]:  Use new __libc_internal_tsd_{set,get}
	interface for thread-specific data.

1997-10-25 06:51  Ulrich Drepper  <drepper@cygnus.com>

	* elf/dl-addr.c: Use braces for correct logical grouping.
	Patch by Wolfram Gloger <wmglo@dent.med.uni-muenchen.de>.

1997-10-18 09:15  Geoff Keating  <geoffk@ozemail.com.au>

	* io/ftwtest-sh: Sometimes /tmp is a symlink to somewhere more
	convenient; that caused this test to break.

	* sysdeps/powerpc/dl-machine.h: Fix typo.

	* sysdeps/powerpc/bits/fenv.h: Don't use floating-point registers
	when -msoft-float is in effect, because this causes compilation to
	stop.
	* sysdeps/powerpc/bits/mathinlines.h: Likewise.

	* rpm/template: Add description, use RPM flags rather than the ones
	used to build the spec.  Build in a temporary directory, not /.

	* elf/dl-lookup.c: Don't include _itoa.h, it's not used.
	* elf/dl-minimal.c: Use _itoa_word rather than _itoa.  It seems that
	_itoa is the only routine that ld.so uses that requires something
	from libgcc.a on powerpc, so it would be best to avoid it in ld.so.
	* elf/rtld.c: Likewise.
	* sysdeps/generic/_strerror.c: Likewise.
	* stdio-common/_itoa.c: Split out digits strings.
	* stdio-common/itoa-digits.c: New file.
	* stdio-common/Makefile: Add itoa-digits.

1997-10-21  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* manual/filesys.texi (Scanning Directory Content): Document error
	case more.

	* dirent/scandir.c (scandir): Ignore errors from select function.
	Suggested by urbanw@cs.umu.se (closes PR libc/316).

1997-10-25 06:18  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/unix/sysv/linux/sparc/sparc32/socket.S: Corrections.
	Patch by Erik Troan <ewt@redhat.com>.

1997-10-25 04:00  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/generic/dl-cache.c (_dl_load_cache_lookup): Favour exact
	matching of version function if both the general (1) and
	glibc-specific (3) entry are present.

1997-10-22 18:47  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>

	* sunrpc/rpc/clnt.h: Add get_myaddress prototype.

	* nis/libnsl.map: Fix typo.

	* nis/nis_call.c: Fix memory leak.

1997-10-22 19:29  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/generic/memcmp.c: Define __P if not defined before.
	Patch by Jim Meyering <meyering@eng.ascend.com>.

1997-10-21 22:09  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/unix/sysv/linux/sys/prctl.h: New file by Richard Gooch
	<rgooch@atnf.csiro.au>.

1997-10-21 21:50  Ulrich Drepper  <drepper@cygnus.com>

	* misc/syslog.c (vsyslog): Open console with O_NOCTTY.
	Patch by Zack Weinberg <zack@rabi.phys.columbia.edu>.

1997-10-21 18:07  Ulrich Drepper  <drepper@cygnus.com>

	* posix/wordexp.c: Improve handling of $... expressions.
	Patch by Tim Waugh <tim@cyberelk.demon.co.uk>.

1997-10-21 16:12  Ulrich Drepper  <drepper@cygnus.com>

	* manual/string.texi: Correct return values of bcopy and bzero.
	Patch by Matthew Wilcox <willy@odie.barnet.ac.uk>.

1997-10-18 15:03  Philip Blundell  <Philip.Blundell@pobox.com>

	* sysdeps/unix/sysv/linux/bits/socket.h: Correct types of some
	elements in struct msghdr and struct cmsghdr, to keep in step with
	the kernel.

1997-10-17 22:29  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/unix/sysv/linux/sparc/sparc32/init-first.h: Fix another
	bug in startup code.
	Patch by Eric Delaunay <delaunay@lix.polytechnique.fr>.

1997-10-16 20:17  Richard Henderson  <rth@cygnus.com>

	* sysdeps/unix/sysv/linux/sparc/sparc32/socket.S: Dump args to the
	stack and give the kernel a pointer.  Use the sysdep.h macros.

1997-10-17 04:07  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/sparc/sparc32/elf/start.S: Calculate argv correctly.
	Patch by Eric Delaunay <delaunay@lix.polytechnique.fr>.

1997-10-16  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* sysdeps/libm-ieee754/s_nextafterxf.c [!__STDC__]: Correct typo.

1997-10-16 14:50  Ulrich Drepper  <drepper@cygnus.com>

	* manual/pattern.texi: Document globfree.

1997-10-15 21:11  Philip Blundell  <Philip.Blundell@pobox.com>

	* sysdeps/unix/sysv/linux/net/if_packet.h: New file.
	* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
	net/if_packet.h.

	* sysdeps/unix/sysv/linux/net/if_arp.h (ARPHRD_ASH): New type, for
	64Mbps ASH.
	(ARPHRD_ETHER): This is used for 100Mbps networks too.

1997-10-15  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* Makerules (install): Use full pathnames for linker script.
	This is to work around a limitation in `ld' while no better solution
	is possible.

1997-10-15  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* malloc/malloc.c (mmap_chunk): Put inline before static in
	function definition to avoid compiler warning.
	(malloc_extend): Likewise.

	* sysdeps/generic/des_impl.c: Include "des.h" to avoid warning.

1997-10-15  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* NEWS: Fix @gnu.ai.mit.edu -> @gnu.org.
	* README.template: Likewise.
	* db/makedb.c: Likewise.
	* elf/ldd.bash.in: Likewise.
	* elf/ldd.sh.in: Likewise.
	* intl/locale.alias: Likewise.
	* login/programs/utmpd.c: Likewise.
	* libio/stdfiles.c [!_IO_MTSAFE] (DEF_STDFILE): Fix parameter list.

1997-10-14  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* Rules: Remove all empty.* files.
	(shared-only-routines): Correct implementation.

1997-10-14  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* sysdeps/libm-ieee754/s_lrintl.c: Make compilable.
	* sysdeps/libm-ieee754/s_llrintl.c: Likewise.  Optimized.

1997-10-14  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* elf/ldd.bash.in: Only prepend ./ if the file contains no slash
	at all.
	* elf/ldd.sh.in: Likewise.

1997-10-14  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* sysdeps/m68k/sys/ucontext.h: New file.

1997-10-13  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* sysdeps/m68k/fpu/s_scalbln.c: New (empty) file.
	* sysdeps/m68k/fpu/s_scalblnf.c: New (empty) file.
	* sysdeps/m68k/fpu/s_scalblnl.c: New (empty) file.

	* sysdeps/m68k/fpu/s_scalbn.c: Add scalbln alias.
	* sysdeps/m68k/fpu/s_scalbnf.c: Adapted.
	* sysdeps/m68k/fpu/s_scalbnl.c: Adapted.

	* sysdeps/m68k/fpu/s_lrint.c: Add standard skeleton stuff.
	* sysdeps/m68k/fpu/s_lrintf.c: New file.
	* sysdeps/m68k/fpu/s_lrintl.c: New file.

	* sysdeps/m68k/fpu/bits/mathinline.h: Add fma and scalbln.  Update
	lrint and scalbn.
	(__m81_inline) [__cplusplus]: Define to __inline.

	* math/bits/mathcalls.h: Remove whitespace before second argument
	of __MATHDECL.  Add note explaining this.

1997-10-13  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* manual/arith.texi (Absolute Value): Spelling fix.

1997-10-13  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* malloc/obstack.h (obstack_empty_p) [!__GNUC__]: Properly
	parenthesize the macro parameter.

	* Rules: Remove rules to magically install <subdir>.h headers.
1997-10-26 20:13:00 +00:00
..
bits Update. 1997-10-15 05:34:02 +00:00
netinet Update. 1997-08-02 21:00:51 +00:00
sys Update. 1997-10-15 05:34:02 +00:00
__longjmp.c Update. 1997-10-15 05:34:02 +00:00
_exit.c Update. 1997-10-15 05:34:02 +00:00
_G_config.h Update. 1997-10-12 04:05:44 +00:00
_strerror.c Update. 1997-10-26 20:13:00 +00:00
a.out.h
abort-instr.h
abort.c Update. 1997-06-21 02:59:26 +00:00
accept.c Update. 1997-10-15 05:34:02 +00:00
access.c Update. 1997-10-15 05:34:02 +00:00
acct.c Update. 1997-10-15 05:34:02 +00:00
add_n.c
addmul_1.c
adjtime.c Update. 1997-10-15 05:34:02 +00:00
alarm.c Update. 1997-10-15 05:34:02 +00:00
asm-syntax.h Update. 1997-10-15 05:34:02 +00:00
atomicity.h Update. 1997-10-15 05:34:02 +00:00
bb_init_func.c Update. 1997-06-03 21:53:09 +00:00
bcopy.c
bind.c Update. 1997-10-15 05:34:02 +00:00
brdinit.c Update. 1997-10-15 05:34:02 +00:00
brk.c Update. 1997-10-15 05:34:02 +00:00
bsd-_setjmp.c Update. 1997-10-15 05:34:02 +00:00
bsd-setjmp.c Update. 1997-10-15 05:34:02 +00:00
bzero.c Update. 1997-09-16 00:42:43 +00:00
chdir.c Update. 1997-10-15 05:34:02 +00:00
chflags.c Update. 1997-10-15 05:34:02 +00:00
chmod.c Update. 1997-10-15 05:34:02 +00:00
chown.c Update. 1997-10-15 05:34:02 +00:00
chroot.c Update. 1997-10-15 05:34:02 +00:00
clock.c Update. 1997-10-15 05:34:02 +00:00
close.c Update. 1997-10-15 05:34:02 +00:00
closedir.c Update. 1997-10-15 05:34:02 +00:00
cmp.c
configure
configure.in
confstr.h Update. 1997-10-15 05:34:02 +00:00
connect.c Update. 1997-10-15 05:34:02 +00:00
console.c Update. 1997-10-15 05:34:02 +00:00
crypt-entry.c Update. 1997-06-03 21:53:09 +00:00
crypt.h Update. 1997-09-11 12:09:10 +00:00
ctermid.c Update. 1997-10-15 05:34:02 +00:00
cuserid.c Update. 1997-10-15 05:34:02 +00:00
dbl2mpn.c Update. 1997-10-15 05:34:02 +00:00
defs.c Update. 1997-10-15 05:34:02 +00:00
des_impl.c Update. 1997-10-26 20:13:00 +00:00
det_endian.c Update. 1997-06-23 21:55:26 +00:00
dirfd.c Update. 1997-10-15 05:34:02 +00:00
dirstream.h Update. 1997-10-15 05:34:02 +00:00
Dist Update. 1997-07-12 23:35:19 +00:00
div.c
divmod_1.c
divrem.c
dl-cache.c Update. 1997-10-26 20:13:00 +00:00
dl-machine.h Update. 1997-10-15 05:34:02 +00:00
dl-sysdep.c Update. 1997-08-29 01:19:12 +00:00
dup2.c Update. 1997-10-15 05:34:02 +00:00
dup.c Update. 1997-10-15 05:34:02 +00:00
e_acoshl.c Update. 1997-10-15 05:34:02 +00:00
e_acosl.c Update. 1997-10-15 05:34:02 +00:00
e_asinl.c Update. 1997-10-15 05:34:02 +00:00
e_atan2l.c Update. 1997-10-15 05:34:02 +00:00
e_expl.c Update. 1997-10-15 05:34:02 +00:00
e_fmodl.c Update. 1997-10-15 05:34:02 +00:00
e_j0l.c Update. 1997-10-15 05:34:02 +00:00
e_j1l.c Update. 1997-10-15 05:34:02 +00:00
e_jnl.c Update. 1997-10-15 05:34:02 +00:00
e_lgammal_r.c Update. 1997-10-15 05:34:02 +00:00
e_log10l.c Update. 1997-10-15 05:34:02 +00:00
e_logl.c Update. 1997-10-15 05:34:02 +00:00
e_powl.c Update. 1997-10-15 05:34:02 +00:00
e_rem_pio2l.c Update. 1997-10-15 05:34:02 +00:00
e_sqrtl.c Update. 1997-10-15 05:34:02 +00:00
enbl-secure.c
entry.h Update. 1997-07-12 23:35:19 +00:00
errlist.c Update. 1997-10-15 05:34:02 +00:00
errno-loc.c
euidaccess.c Update. 1997-10-15 05:34:02 +00:00
exc2signal.c Update. 1997-10-15 05:34:02 +00:00
execve.c Update. 1997-10-15 05:34:02 +00:00
fchdir.c Update. 1997-10-15 05:34:02 +00:00
fchflags.c Update. 1997-10-15 05:34:02 +00:00
fchmod.c Update. 1997-10-15 05:34:02 +00:00
fchown.c Update. 1997-10-15 05:34:02 +00:00
fclrexcpt.c Update. 1997-10-15 05:34:02 +00:00
fcntl.c Update. 1997-10-15 05:34:02 +00:00
fdatasync.c Update. 1997-06-23 21:55:26 +00:00
fdopen.c Update. 1997-10-15 05:34:02 +00:00
fegetenv.c Update. 1997-10-15 05:34:02 +00:00
fegetround.c Update. 1997-10-15 05:34:02 +00:00
feholdexcpt.c Update. 1997-10-15 05:34:02 +00:00
fesetenv.c Update. 1997-10-15 05:34:02 +00:00
fesetround.c Update. 1997-10-15 05:34:02 +00:00
feupdateenv.c Update. 1997-10-15 05:34:02 +00:00
fexecve.c Update. 1997-10-15 05:34:02 +00:00
ffs.c
fgetexcptflg.c Update. 1997-10-15 05:34:02 +00:00
flock.c Update. 1997-10-15 05:34:02 +00:00
fork.c Update. 1997-10-15 05:34:02 +00:00
fpathconf.c Update. 1997-10-15 05:34:02 +00:00
fpu_control.c Update. 1997-06-23 21:55:26 +00:00
fpu_control.h Update. 1997-10-15 05:34:02 +00:00
fraiseexcpt.c Update. 1997-10-15 05:34:02 +00:00
fsetexcptflg.c Update. 1997-10-15 05:34:02 +00:00
fstatfs64.c Update. 1997-10-15 05:34:02 +00:00
fstatfs.c Update. 1997-10-15 05:34:02 +00:00
fsync.c Update. 1997-10-15 05:34:02 +00:00
ftestexcept.c Update. 1997-10-15 05:34:02 +00:00
ftime.c Update. 1997-06-23 21:55:26 +00:00
ftruncate.c Update. 1997-10-15 05:34:02 +00:00
fxstat64.c Update. 1997-10-15 05:34:02 +00:00
fxstat.c Update. 1997-10-15 05:34:02 +00:00
gai_strerror.c Update. 1997-10-15 05:34:02 +00:00
getaddrinfo.c Update. 1997-10-15 05:34:02 +00:00
getcwd.c Update. 1997-10-15 05:34:02 +00:00
getdents.c Update. 1997-10-15 05:34:02 +00:00
getdomain.c Update. 1997-10-15 05:34:02 +00:00
getdtsz.c Update. 1997-10-15 05:34:02 +00:00
getegid.c Update. 1997-10-15 05:34:02 +00:00
getenv.c
geteuid.c Update. 1997-10-15 05:34:02 +00:00
getgid.c Update. 1997-10-15 05:34:02 +00:00
getgroups.c Update. 1997-10-15 05:34:02 +00:00
gethostid.c Update. 1997-10-15 05:34:02 +00:00
gethostname.c Update. 1997-10-15 05:34:02 +00:00
getitimer.c Update. 1997-10-15 05:34:02 +00:00
getlogin_r.c Update. 1997-10-15 05:34:02 +00:00
getlogin.c Update. 1997-10-15 05:34:02 +00:00
getpagesize.c Update. 1997-10-15 05:34:02 +00:00
getpeername.c Update. 1997-10-15 05:34:02 +00:00
getpgid.c Update. 1997-10-15 05:34:02 +00:00
getpgrp.c
getpid.c Update. 1997-10-15 05:34:02 +00:00
getppid.c Update. 1997-10-15 05:34:02 +00:00
getpriority.c Update. 1997-10-15 05:34:02 +00:00
getrlimit64.c Update. 1997-10-15 05:34:02 +00:00
getrlimit.c Update. 1997-10-15 05:34:02 +00:00
getrusage.c Update. 1997-10-15 05:34:02 +00:00
getsid.c Update. 1997-10-15 05:34:02 +00:00
getsockname.c Update. 1997-10-15 05:34:02 +00:00
getsockopt.c Update. 1997-10-15 05:34:02 +00:00
getsysstats.c Update. 1997-10-15 05:34:02 +00:00
gettimeofday.c Update. 1997-10-15 05:34:02 +00:00
getuid.c Update. 1997-10-15 05:34:02 +00:00
gmp-mparam.h
group_member.c Update. 1997-06-23 21:55:26 +00:00
gtty.c Update. 1997-10-15 05:34:02 +00:00
htonl.c Update. 1997-07-24 01:36:01 +00:00
htons.c Update. 1997-07-28 22:35:20 +00:00
if_index.c Update. 1997-10-15 05:34:02 +00:00
init-first.c Update. 1997-10-15 05:34:02 +00:00
init-posix.c Update. 1997-10-15 05:34:02 +00:00
inlines.c
intr-msg.h Update. 1997-10-15 05:34:02 +00:00
ioctl.c Update. 1997-10-15 05:34:02 +00:00
isatty.c Update. 1997-10-15 05:34:02 +00:00
isfdtype.c Update. 1997-10-15 05:34:02 +00:00
jmp-unwind.c Update. 1997-10-15 05:34:02 +00:00
k_cosl.c Update. 1997-10-15 05:34:02 +00:00
k_rem_pio2l.c Update. 1997-10-15 05:34:02 +00:00
k_sinl.c Update. 1997-10-15 05:34:02 +00:00
k_tanl.c Update. 1997-10-15 05:34:02 +00:00
kill.c Update. 1997-10-15 05:34:02 +00:00
killpg.c Update. 1997-10-15 05:34:02 +00:00
lchown.c Update. 1997-10-15 05:34:02 +00:00
ldbl2mpn.c Update. 1997-10-15 05:34:02 +00:00
ldiv.c Update. 1997-06-23 21:55:26 +00:00
libc_fatal.c Update. 1997-10-15 05:34:02 +00:00
link.c Update. 1997-10-15 05:34:02 +00:00
listen.c Update. 1997-10-15 05:34:02 +00:00
lldiv.c Update. 1997-06-23 21:55:26 +00:00
lockfile.c Update. 1997-10-15 05:34:02 +00:00
longjmp-ts.c Update. 1997-10-15 05:34:02 +00:00
longjmp.c Update. 1997-06-29 22:05:27 +00:00
lseek64.c Update. 1997-10-15 05:34:02 +00:00
lseek.c Update. 1997-10-15 05:34:02 +00:00
lshift.c
lxstat64.c Update. 1997-10-15 05:34:02 +00:00
lxstat.c Update. 1997-06-23 21:55:26 +00:00
machine-gmon.h Update. 1997-07-26 02:33:30 +00:00
machine-lock.h Update. 1997-10-15 05:34:02 +00:00
machine-sp.h Update. 1997-10-15 05:34:02 +00:00
madvise.c Update. 1997-10-15 05:34:02 +00:00
make_siglist.c Update. 1997-06-23 21:55:26 +00:00
Makefile Update. 1997-10-15 05:34:02 +00:00
memccpy.c Update. 1997-09-11 12:09:10 +00:00
memchr.c Update. 1997-09-11 12:09:10 +00:00
memcmp.c Update. 1997-10-26 20:13:00 +00:00
memcopy.h
memcpy.c Update. 1997-08-27 20:26:10 +00:00
memmem.c Update. 1997-09-11 12:09:10 +00:00
memmove.c Update. 1997-09-11 12:09:10 +00:00
mempcpy.c Update. 1997-09-11 12:09:10 +00:00
memset.c Update. 1997-10-12 04:05:44 +00:00
mig-reply.c Update. 1997-06-23 21:55:26 +00:00
mkdir.c Update. 1997-10-15 05:34:02 +00:00
mkfifo.c Update. 1997-10-15 05:34:02 +00:00
mkstemp.c Update. 1997-10-15 05:34:02 +00:00
mktemp.c Update. 1997-10-15 05:34:02 +00:00
mmap.c Update. 1997-10-15 05:34:02 +00:00
mod_1.c
morecore.c Update. 1997-06-23 21:55:26 +00:00
mpn2dbl.c Update. 1997-10-15 05:34:02 +00:00
mpn2flt.c Update. 1997-10-15 05:34:02 +00:00
mpn2ldbl.c Update. 1997-10-15 05:34:02 +00:00
mprotect.c Update. 1997-10-15 05:34:02 +00:00
msgctl.c Update. 1997-10-15 05:34:02 +00:00
msgget.c Update. 1997-10-15 05:34:02 +00:00
msgrcv.c Update. 1997-10-15 05:34:02 +00:00
msgsnd.c Update. 1997-10-15 05:34:02 +00:00
msync.c Update. 1997-10-15 05:34:02 +00:00
mul_1.c
mul_n.c
mul.c
munmap.c Update. 1997-10-15 05:34:02 +00:00
nanosleep.c Update. 1997-10-15 05:34:02 +00:00
nice.c Update. 1997-10-15 05:34:02 +00:00
nlist.c Update. 1997-10-15 05:34:02 +00:00
open64.c Update. 1997-10-15 05:34:02 +00:00
open.c Update. 1997-10-15 05:34:02 +00:00
opendir.c Update. 1997-10-15 05:34:02 +00:00
pagecopy.h Update. 1997-06-23 21:55:26 +00:00
pathconf.c Update. 1997-10-15 05:34:02 +00:00
paths.h
pause.c Update. 1997-10-15 05:34:02 +00:00
pipe.c Update. 1997-10-15 05:34:02 +00:00
pipestream.c Update. 1997-10-15 05:34:02 +00:00
poll.c Update. 1997-10-15 05:34:02 +00:00
pread64.c Update. 1997-10-26 20:13:00 +00:00
pread.c Update. 1997-10-26 20:13:00 +00:00
prof-freq.c
profil-counter.h Update. 1997-06-23 21:55:26 +00:00
profil.c Update. 1997-10-15 05:34:02 +00:00
pselect.c Update. 1997-06-23 21:55:26 +00:00
ptrace.c Update. 1997-10-15 05:34:02 +00:00
pty.c
putenv.c
pwrite64.c Update. 1997-10-26 20:13:00 +00:00
pwrite.c Update. 1997-10-26 20:13:00 +00:00
raise.c Update. 1997-10-15 05:34:02 +00:00
read.c Update. 1997-10-15 05:34:02 +00:00
readdir64_r.c Update. 1997-10-15 05:34:02 +00:00
readdir64.c Update. 1997-10-15 05:34:02 +00:00
readdir_r.c Update. 1997-10-15 05:34:02 +00:00
readdir.c Update. 1997-10-15 05:34:02 +00:00
readlink.c Update. 1997-10-15 05:34:02 +00:00
readv.c Update. 1997-10-15 05:34:02 +00:00
reboot.c Update. 1997-10-15 05:34:02 +00:00
recv.c Update. 1997-10-15 05:34:02 +00:00
recvfrom.c Update. 1997-10-15 05:34:02 +00:00
recvmsg.c Update. 1997-10-15 05:34:02 +00:00
remove.c Update. 1997-10-15 05:34:02 +00:00
rename.c Update. 1997-10-15 05:34:02 +00:00
revoke.c Update. 1997-10-15 05:34:02 +00:00
rewinddir.c Update. 1997-10-15 05:34:02 +00:00
rmdir.c Update. 1997-10-15 05:34:02 +00:00
rshift.c
s_atanl.c Update. 1997-10-15 05:34:02 +00:00
s_erfl.c Update. 1997-10-15 05:34:02 +00:00
s_exp2.c Update. 1997-10-15 05:34:02 +00:00
s_exp2f.c Update. 1997-10-15 05:34:02 +00:00
s_exp2l.c Update. 1997-10-15 05:34:02 +00:00
s_expm1l.c Update. 1997-10-15 05:34:02 +00:00
s_log1pl.c Update. 1997-10-15 05:34:02 +00:00
s_log2l.c Update. 1997-10-15 05:34:02 +00:00
sbrk.c Update. 1997-06-23 21:55:26 +00:00
sched_getp.c Update. 1997-10-15 05:34:02 +00:00
sched_gets.c Update. 1997-10-15 05:34:02 +00:00
sched_primax.c Update. 1997-10-15 05:34:02 +00:00
sched_primin.c Update. 1997-10-15 05:34:02 +00:00
sched_rr_gi.c Update. 1997-10-15 05:34:02 +00:00
sched_setp.c Update. 1997-10-15 05:34:02 +00:00
sched_sets.c Update. 1997-10-15 05:34:02 +00:00
sched_yield.c Update. 1997-10-15 05:34:02 +00:00
seekdir.c Update. 1997-10-15 05:34:02 +00:00
select.c Update. 1997-10-15 05:34:02 +00:00
semctl.c Update. 1997-10-15 05:34:02 +00:00
semget.c Update. 1997-10-15 05:34:02 +00:00
semop.c Update. 1997-10-15 05:34:02 +00:00
send.c Update. 1997-10-15 05:34:02 +00:00
sendmsg.c Update. 1997-10-15 05:34:02 +00:00
sendto.c Update. 1997-10-15 05:34:02 +00:00
setdomain.c Update. 1997-10-15 05:34:02 +00:00
setegid.c Update. 1997-10-15 05:34:02 +00:00
setenv.c Update. 1997-06-21 02:59:26 +00:00
seteuid.c Update. 1997-10-15 05:34:02 +00:00
setfpucw.c Update. 1997-10-15 05:34:02 +00:00
setgid.c Update. 1997-10-15 05:34:02 +00:00
setgroups.c Update. 1997-10-15 05:34:02 +00:00
sethostid.c Update. 1997-10-15 05:34:02 +00:00
sethostname.c Update. 1997-10-15 05:34:02 +00:00
setitimer.c Update. 1997-10-15 05:34:02 +00:00
setjmp.c Update. 1997-10-15 05:34:02 +00:00
setlogin.c Update. 1997-10-15 05:34:02 +00:00
setpgid.c Update. 1997-10-15 05:34:02 +00:00
setpriority.c Update. 1997-10-15 05:34:02 +00:00
setregid.c Update. 1997-10-15 05:34:02 +00:00
setreuid.c Update. 1997-10-15 05:34:02 +00:00
setrlimit64.c Update. 1997-10-15 05:34:02 +00:00
setrlimit.c Update. 1997-10-15 05:34:02 +00:00
setsid.c Update. 1997-10-15 05:34:02 +00:00
setsockopt.c Update. 1997-10-15 05:34:02 +00:00
settimeofday.c Update. 1997-10-15 05:34:02 +00:00
setuid.c Update. 1997-10-15 05:34:02 +00:00
shmat.c Update. 1997-10-15 05:34:02 +00:00
shmctl.c Update. 1997-10-15 05:34:02 +00:00
shmdt.c Update. 1997-10-15 05:34:02 +00:00
shmget.c Update. 1997-10-15 05:34:02 +00:00
shutdown.c Update. 1997-10-15 05:34:02 +00:00
sigaction.c Update. 1997-10-15 05:34:02 +00:00
sigaltstack.c Update. 1997-10-15 05:34:02 +00:00
sigblock.c Update. 1997-10-15 05:34:02 +00:00
sigintr.c Update. 1997-10-15 05:34:02 +00:00
sigjmp.c Update. 1997-06-29 22:05:27 +00:00
siglist.c Update. 1997-10-15 05:34:02 +00:00
signal.c Update. 1997-10-15 05:34:02 +00:00
signame.c Update. 1997-06-23 21:55:26 +00:00
signame.h Update. 1997-06-23 21:55:26 +00:00
sigpause.c Update. 1997-10-15 05:34:02 +00:00
sigpending.c Update. 1997-10-15 05:34:02 +00:00
sigprocmask.c Update. 1997-10-15 05:34:02 +00:00
sigreturn.c Update. 1997-10-15 05:34:02 +00:00
sigsetmask.c Update. 1997-10-15 05:34:02 +00:00
sigstack.c Update. 1997-10-15 05:34:02 +00:00
sigsuspend.c Update. 1997-10-15 05:34:02 +00:00
sigvec.c Update. 1997-10-15 05:34:02 +00:00
sigwait.c Update. 1997-10-15 05:34:02 +00:00
sleep.c Update. 1997-10-15 05:34:02 +00:00
socket.c Update. 1997-10-15 05:34:02 +00:00
socketpair.c Update. 1997-10-15 05:34:02 +00:00
speed.c
sstk.c Update. 1997-10-15 05:34:02 +00:00
start.c Update. 1997-10-15 05:34:02 +00:00
statfs64.c Update. 1997-10-15 05:34:02 +00:00
statfs.c Update. 1997-10-15 05:34:02 +00:00
stdio_init.c Update. 1997-10-15 05:34:02 +00:00
stime.c Update. 1997-10-15 05:34:02 +00:00
stpcpy.c Update. 1997-09-16 00:42:43 +00:00
stpncpy.c
strcasecmp_l.c
strcasecmp.c
strcat.c Update. 1997-09-11 12:09:10 +00:00
strchr.c Update. 1997-10-12 04:05:44 +00:00
strcmp.c Update. 1997-09-11 12:09:10 +00:00
strcpy.c Update. 1997-09-11 12:09:10 +00:00
strcspn.c Update. 1997-09-11 12:09:10 +00:00
strlen.c Update. 1997-10-12 04:05:44 +00:00
strncase_l.c
strncase.c
strncat.c Update. 1997-09-11 12:09:10 +00:00
strncmp.c Update. 1997-09-11 12:09:10 +00:00
strncpy.c Update. 1997-09-11 12:09:10 +00:00
strpbrk.c Update. 1997-09-11 12:09:10 +00:00
strrchr.c Update. 1997-09-11 12:09:10 +00:00
strsep.c Update. 1997-09-11 12:09:10 +00:00
strspn.c Update. 1997-09-11 12:09:10 +00:00
strstr.c Update. 1997-09-11 12:09:10 +00:00
strtok_r.c Update. 1997-09-11 12:09:10 +00:00
strtok.c Update. 1997-09-11 12:09:10 +00:00
strtsupp.c Update. 1997-10-15 05:34:02 +00:00
stty.c Update. 1997-10-15 05:34:02 +00:00
stub_warnings Update. 1997-10-15 05:34:02 +00:00
sub_n.c
submul_1.c
swapoff.c Update. 1997-10-15 05:34:02 +00:00
swapon.c Update. 1997-10-15 05:34:02 +00:00
symlink.c Update. 1997-10-15 05:34:02 +00:00
sync.c Update. 1997-10-15 05:34:02 +00:00
syscall.c Update. 1997-10-15 05:34:02 +00:00
sysconf.c Update. 1997-10-15 05:34:02 +00:00
sysd-stdio.c Update. 1997-09-16 00:42:43 +00:00
sysdep.c Update. 1997-10-15 05:34:02 +00:00
sysdep.h
system.c Update. 1997-10-15 05:34:02 +00:00
sysv_signal.c Update. 1997-10-15 05:34:02 +00:00
tcdrain.c Update. 1997-10-15 05:34:02 +00:00
tcflow.c Update. 1997-10-15 05:34:02 +00:00
tcflush.c Update. 1997-10-15 05:34:02 +00:00
tcgetattr.c Update. 1997-10-15 05:34:02 +00:00
tcgetpgrp.c Update. 1997-10-15 05:34:02 +00:00
tcsendbrk.c Update. 1997-10-15 05:34:02 +00:00
tcsetattr.c Update. 1997-10-15 05:34:02 +00:00
tcsetpgrp.c Update. 1997-10-15 05:34:02 +00:00
telldir.c Update. 1997-10-15 05:34:02 +00:00
tempname.c Update. 1997-10-15 05:34:02 +00:00
thread_state.h Update. 1997-10-15 05:34:02 +00:00
time.c Update. 1997-10-15 05:34:02 +00:00
times.c Update. 1997-10-15 05:34:02 +00:00
trampoline.c Update. 1997-10-15 05:34:02 +00:00
truncate.c Update. 1997-10-15 05:34:02 +00:00
ttyname_r.c Update. 1997-10-15 05:34:02 +00:00
ttyname.c Update. 1997-10-15 05:34:02 +00:00
ualarm.c Update. 1997-10-15 05:34:02 +00:00
udiv_qrnnd.c Update. 1997-10-15 05:34:02 +00:00
ulimit.c Update. 1997-10-15 05:34:02 +00:00
umask.c Update. 1997-10-15 05:34:02 +00:00
uname.c Update. 1997-06-23 21:55:26 +00:00
unlink.c Update. 1997-10-15 05:34:02 +00:00
usleep.c Update. 1997-10-15 05:34:02 +00:00
ustat.c Update. 1997-10-15 05:34:02 +00:00
utime.c Update. 1997-10-15 05:34:02 +00:00
utimes.c Update. 1997-10-15 05:34:02 +00:00
varargs.h Update. 1997-06-23 21:55:26 +00:00
vdprintf.c Update. 1997-10-15 05:34:02 +00:00
vfork.c
vhangup.c Update. 1997-10-15 05:34:02 +00:00
vlimit.c Update. 1997-08-02 21:00:51 +00:00
vtimes.c Update. 1997-08-02 21:00:51 +00:00
wait3.c Update. 1997-10-15 05:34:02 +00:00
wait4.c Update. 1997-10-15 05:34:02 +00:00
wait.c Update. 1997-10-15 05:34:02 +00:00
waitpid.c Update. 1997-10-15 05:34:02 +00:00
wordcopy.c
write.c Update. 1997-10-15 05:34:02 +00:00
writev.c Update. 1997-10-15 05:34:02 +00:00
xmknod.c Update. 1997-10-15 05:34:02 +00:00
xstat64.c Update. 1997-10-15 05:34:02 +00:00
xstat.c Update. 1997-10-15 05:34:02 +00:00