test_main.c still seems to contain a call to _read(), rather than
read(). This breaks compilation under Tru64 for me; the attached
patch removes the _.
- Damien
Index: test_main.c
===================================================================
RCS file: /home/perlcvs/parrot/test_main.c,v
retrieving revision 1.11
diff -u -r1.11 test_main.c
--- test_main.c 2001/09/18 21:03:27 1.11
+++ test_main.c 2001/09/20 21:17:44
@@ -94,7 +94,7 @@
#ifndef HAS_HEADER_SYSMMAN
program_code = (opcode_t*)mem_sys_allocate(program_size);
- _read(fd, (void*)program_code, program_size);
+ read(fd, (void*)program_code, program_size);
#else
program_code = (opcode_t*)mmap(0, program_size, PROT_READ, MAP_SHARED, fd, 0);
#endif