added some #include guards

This commit is contained in:
gdr 1997-10-03 03:59:41 +00:00
parent dbeebca188
commit e47488e5d3
2 changed files with 8 additions and 10 deletions

View File

@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* $Id: cat.c,v 1.2 1997/09/26 06:13:46 gdr Exp $ * $Id: cat.c,v 1.3 1997/10/03 03:59:41 gdr Exp $
*/ */
/* /*
@ -73,9 +73,6 @@ static char const sccsid[] = "@(#)cat.c 8.2 (Berkeley) 4/27/95";
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#if defined(__GNO__) && defined(__STACK_CHECK__)
#include <gno/gno.h>
#endif
int bflag, eflag, nflag, sflag, tflag, vflag; int bflag, eflag, nflag, sflag, tflag, vflag;
int rval; int rval;
@ -88,8 +85,8 @@ void raw_cat __P((int));
/* Interface to check on how much stack space a C program uses. */ /* Interface to check on how much stack space a C program uses. */
#if defined(__GNO__) && defined(__STACK_CHECK__) #if defined(__GNO__) && defined(__STACK_CHECK__)
#ifndef _STDLIB_H_ #ifndef _GNO_GNO_H_
#include <stdlib.h> #include <gno/gno.h>
#endif #endif
static void report_stack(void) static void report_stack(void)
{ {

View File

@ -39,6 +39,8 @@
* Changes not related to compiler are replaced using #ifndef __GNO__ * Changes not related to compiler are replaced using #ifndef __GNO__
* *
* Added prototyped headers, surrounded by #ifndef __STDC__ * Added prototyped headers, surrounded by #ifndef __STDC__
*
* $Id: head.c,v 1.3 1997/10/03 03:58:18 gdr Exp $
*/ */
#ifndef __GNO__ #ifndef __GNO__
@ -53,7 +55,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)head.c 8.2 (Berkeley) 5/4/95"; static char sccsid[] = "@(#)head.c 8.2 (Berkeley) 5/4/95";
#endif #endif
static const char rcsid[] = static const char rcsid[] =
"$Id: head.c,v 1.2 1997/09/26 06:20:06 gdr Exp $"; "$Id: head.c,v 1.3 1997/10/03 03:58:18 gdr Exp $";
#endif /* not lint */ #endif /* not lint */
#endif #endif
@ -81,10 +83,9 @@ int eval;
/* Interface to check on how much stack space a C program uses. */ /* Interface to check on how much stack space a C program uses. */
#if defined(__GNO__) && defined(__STACK_CHECK__) #if defined(__GNO__) && defined(__STACK_CHECK__)
#ifndef _STDLIB_H_ #ifndef _GNO_GNO_H_
#include <stdlib.h>
#endif
#include <gno/gno.h> #include <gno/gno.h>
#endif
static void report_stack(void) static void report_stack(void)
{ {
fprintf(stderr,"\n ==> %d stack bytes used <== \n", _endStackCheck()); fprintf(stderr,"\n ==> %d stack bytes used <== \n", _endStackCheck());