Deleted Added
full compact
33c33
< * $FreeBSD: head/lib/libc/gen/nlist.c 55837 2000-01-12 09:23:48Z jasone $
---
> * $FreeBSD: head/lib/libc/gen/nlist.c 56698 2000-01-27 23:07:25Z jasone $
69c69
< fd = _libc_open(name, O_RDONLY, 0);
---
> fd = _open(name, O_RDONLY, 0);
73c73
< (void)_libc_close(fd);
---
> (void)_close(fd);
258c258
< _libc_read(fd, &ehdr, sizeof(Elf_Ehdr)) != sizeof(Elf_Ehdr) ||
---
> _read(fd, &ehdr, sizeof(Elf_Ehdr)) != sizeof(Elf_Ehdr) ||
342c342
< if (_libc_read(fd, sbuf, cc) != cc)
---
> if (_read(fd, sbuf, cc) != cc)