Added RCS id.

Adapted to use the NOFLOAT cpp flag.
This commit is contained in:
em
1985-02-15 14:20:04 +00:00
parent a1c2dadb2a
commit 04e454d3c6
16 changed files with 734 additions and 505 deletions

View File

@@ -15,6 +15,8 @@
*
*/
char rcs_id[] = "$Header$" ;
static int level = 0 ;
int procentry(name) char *name ; {
register int count ;

View File

@@ -15,6 +15,8 @@
*
*/
char rcs_id2[] = "$Header$" ;
/* Author: E.G. Keizer */
int fac(n) { return ( n==0 ? 1 : n*fac(n-1)) ; }