Index: libc/malloc/mtrace.c =================================================================== RCS file: /cvs/libc/malloc/mtrace.c,v retrieving revision 1.25 diff -u -r1.25 mtrace.c --- libc/malloc/mtrace.c 2001/02/13 22:06:16 1.25 +++ libc/malloc/mtrace.c 2001/02/17 23:03:36 @@ -268,7 +268,7 @@ #endif if (mallfile != NULL || mallwatch != NULL) { - mallstream = fopen64 (mallfile != NULL ? mallfile : "/dev/null", "w"); + mallstream = fopen (mallfile != NULL ? mallfile : "/dev/null", "w"); if (mallstream != NULL) { /* Make sure we close the file descriptor on exec. */ Index: libc/sysdeps/mach/getsysstats.c =================================================================== RCS file: /cvs/libc/sysdeps/mach/getsysstats.c,v retrieving revision 1.5 diff -u -r1.5 getsysstats.c --- libc/sysdeps/mach/getsysstats.c 1999/02/27 20:00:41 1.5 +++ libc/sysdeps/mach/getsysstats.c 2001/02/17 23:03:36 @@ -60,7 +60,7 @@ } /* Return the number of physical pages on the system. */ -int +long int __get_phys_pages () { struct host_basic_info hbi; @@ -78,7 +78,7 @@ } /* Return the number of available physical pages */ -int +long int __get_avphys_pages () { vm_statistics_data_t vs;