lib/libcr/sys/ cleanup

kevin kane kevin.kane at gmail.com
Tue Dec 6 14:14:08 PST 2005


1) make function defs ansi


--- ../mmap.c.klk       2005-12-06 17:02:49.000000000 -0500
+++ lib/libcr/sys/mmap.c        2005-12-06 17:00:30.000000000 -0500
@@ -43,13 +43,7 @@
  * is not supplied by GCC 1.X but is supplied by GCC 2.X.
  */
 void *
-mmap(addr, len, prot, flags, fd, offset)
-       void *  addr;
-       size_t  len;
-       int     prot;
-       int     flags;
-       int     fd;
-       off_t   offset;
+mmap(void *addr, size_t len, int prot, int flags, int fd, off_t offset)
 {

        return((void *)(long)__syscall((quad_t)SYS_mmap, addr, len, prot, flags,






More information about the Submit mailing list