Deleted Added
full compact
33c33
< * $FreeBSD: head/lib/libc/gen/nlist.c 40688 1998-10-28 06:37:49Z jdp $
---
> * $FreeBSD: head/lib/libc/gen/nlist.c 55837 2000-01-12 09:23:48Z jasone $
69c69
< fd = open(name, O_RDONLY, 0);
---
> fd = _libc_open(name, O_RDONLY, 0);
73c73
< (void)close(fd);
---
> (void)_libc_close(fd);
258c258
< read(fd, &ehdr, sizeof(Elf_Ehdr)) != sizeof(Elf_Ehdr) ||
---
> _libc_read(fd, &ehdr, sizeof(Elf_Ehdr)) != sizeof(Elf_Ehdr) ||
342c342
< if (read(fd, sbuf, cc) != cc)
---
> if (_libc_read(fd, sbuf, cc) != cc)