MIPS doesn't like routines named "start"
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 4 Jun 1993 08:51:18 +0000 (00:51 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 4 Jun 1993 08:51:18 +0000 (00:51 -0800)
SCCS-vsn: usr.bin/learn/learn/dounit.c 4.5
SCCS-vsn: usr.bin/learn/learn/start.c 4.9

usr/src/usr.bin/learn/learn/dounit.c
usr/src/usr.bin/learn/learn/start.c

index 2337cfd..9afca69 100644 (file)
@@ -6,7 +6,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)dounit.c   4.4 (Berkeley) %G%";
+static char sccsid[] = "@(#)dounit.c   4.5 (Berkeley) %G%";
 #endif /* not lint */
 
 #include "stdio.h"
 #endif /* not lint */
 
 #include "stdio.h"
@@ -24,7 +24,7 @@ dounit()
        wrong = 0;
 retry:
        if (!noclobber)
        wrong = 0;
 retry:
        if (!noclobber)
-               start(todo);            /* clean up play directory */
+               lstart(todo);           /* clean up play directory */
        sprintf(tbuff, "%s/%s/L%s", direct, sname, todo); /* script = lesson */
        scrin = fopen(tbuff, "r");
        if (scrin == NULL) {
        sprintf(tbuff, "%s/%s/L%s", direct, sname, todo); /* script = lesson */
        scrin = fopen(tbuff, "r");
        if (scrin == NULL) {
index e16d4d0..bbfd23f 100644 (file)
@@ -6,7 +6,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)start.c    4.8 (Berkeley) %G%";
+static char sccsid[] = "@(#)start.c    4.9 (Berkeley) %G%";
 #endif /* not lint */
 
 #include "stdio.h"
 #endif /* not lint */
 
 #include "stdio.h"
@@ -15,7 +15,7 @@ static char sccsid[] = "@(#)start.c   4.8 (Berkeley) %G%";
 #include <dirent.h>
 #include <unistd.h>
 
 #include <dirent.h>
 #include <unistd.h>
 
-start(lesson)
+lstart(lesson)
 char *lesson;
 {
        register struct dirent *ep;
 char *lesson;
 {
        register struct dirent *ep;