--- ray/src/util/getinfo.c 1992/11/12 10:06:11 2.3 +++ ray/src/util/getinfo.c 2003/02/22 02:07:30 2.5 @@ -1,9 +1,6 @@ -/* Copyright (c) 1992 Regents of the University of California */ - #ifndef lint -static char SCCSid[] = "$SunId$ LBL"; +static const char RCSid[] = "$Id: getinfo.c,v 2.5 2003/02/22 02:07:30 greg Exp $"; #endif - /* * getinfo.c - program to read info. header from file. * @@ -20,6 +17,7 @@ extern int _fmode; extern int fputs(); +int tabstr(s) /* put out line followed by tab */ register char *s; { @@ -29,6 +27,7 @@ register char *s; } if (*--s == '\n') putchar('\t'); + return(0); }