Merge from Lite2 (oops, nearly forgot these ones)

This commit is contained in:
Peter Wemm 1997-03-11 17:25:32 +00:00
parent 89cb27a3d4
commit bdb5b1dbdc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=23726
4 changed files with 13 additions and 7 deletions

View File

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

View File

@ -38,16 +38,17 @@ static char copyright[] =
#endif /* not 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 */
#include <sys/types.h>
#include <ctype.h>
#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <err.h>
#include <unistd.h>
#define MAXNUM 65 /* Biggest number we handle. */

View File

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

View File

@ -42,16 +42,19 @@ static char copyright[] =
#endif /* not 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 */
#include <sys/types.h>
#include <ctype.h>
#include <errno.h>
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <time.h>
#include <unistd.h>
#include "quiz.h"
#include "pathnames.h"