Merge from Lite2 (oops, nearly forgot these ones)

This commit is contained in:
peter 1997-03-11 17:25:32 +00:00
parent 77939b5758
commit 4f07d6ce62
4 changed files with 13 additions and 7 deletions

View File

@ -41,7 +41,7 @@ static char copyright[] =
#endif /* not lint */ #endif /* not lint */
#ifndef lint #ifndef lint
static char sccsid[] = "@(#)factor.c 8.3 (Berkeley) 3/30/94"; static char sccsid[] = "@(#)factor.c 8.4 (Berkeley) 5/4/95";
#endif /* not lint */ #endif /* not lint */
/* /*
@ -69,6 +69,7 @@ static char sccsid[] = "@(#)factor.c 8.3 (Berkeley) 3/30/94";
#include <limits.h> #include <limits.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h>
#include "primes.h" #include "primes.h"

View File

@ -38,16 +38,17 @@ static char copyright[] =
#endif /* not lint */ #endif /* not lint */
#ifndef lint #ifndef lint
static char sccsid[] = "@(#)number.c 8.2 (Berkeley) 3/31/94"; static char sccsid[] = "@(#)number.c 8.3 (Berkeley) 5/4/95";
#endif /* not lint */ #endif /* not lint */
#include <sys/types.h> #include <sys/types.h>
#include <ctype.h> #include <ctype.h>
#include <err.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <err.h> #include <unistd.h>
#define MAXNUM 65 /* Biggest number we handle. */ #define MAXNUM 65 /* Biggest number we handle. */

View File

@ -41,7 +41,7 @@ static char copyright[] =
#endif /* not lint */ #endif /* not lint */
#ifndef lint #ifndef lint
static char sccsid[] = "@(#)primes.c 8.4 (Berkeley) 3/21/94"; static char sccsid[] = "@(#)primes.c 8.5 (Berkeley) 5/10/95";
#endif /* not lint */ #endif /* not lint */
/* /*
@ -69,6 +69,7 @@ static char sccsid[] = "@(#)primes.c 8.4 (Berkeley) 3/21/94";
#include <memory.h> #include <memory.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h>
#include "primes.h" #include "primes.h"

View File

@ -42,16 +42,19 @@ static char copyright[] =
#endif /* not lint */ #endif /* not lint */
#ifndef lint #ifndef lint
static char sccsid[] = "@(#)quiz.c 8.2 (Berkeley) 1/3/94"; static char sccsid[] = "@(#)quiz.c 8.3 (Berkeley) 5/4/95";
#endif /* not lint */ #endif /* not lint */
#include <sys/types.h> #include <sys/types.h>
#include <ctype.h>
#include <errno.h> #include <errno.h>
#include <time.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <ctype.h> #include <time.h>
#include <unistd.h>
#include "quiz.h" #include "quiz.h"
#include "pathnames.h" #include "pathnames.h"