Module Name:    src
Committed By:   christos
Date:           Wed Oct  2 21:48:55 UTC 2013

Modified Files:
        src/bin/sh: parser.c

Log Message:
add stdio.h


To generate a diff of this commit:
cvs rdiff -u -r1.84 -r1.85 src/bin/sh/parser.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/bin/sh/parser.c
diff -u src/bin/sh/parser.c:1.84 src/bin/sh/parser.c:1.85
--- src/bin/sh/parser.c:1.84	Wed Oct  2 15:52:58 2013
+++ src/bin/sh/parser.c	Wed Oct  2 17:48:55 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: parser.c,v 1.84 2013/10/02 19:52:58 christos Exp $	*/
+/*	$NetBSD: parser.c,v 1.85 2013/10/02 21:48:55 christos Exp $	*/
 
 /*-
  * Copyright (c) 1991, 1993
@@ -37,10 +37,11 @@
 #if 0
 static char sccsid[] = "@(#)parser.c	8.7 (Berkeley) 5/16/95";
 #else
-__RCSID("$NetBSD: parser.c,v 1.84 2013/10/02 19:52:58 christos Exp $");
+__RCSID("$NetBSD: parser.c,v 1.85 2013/10/02 21:48:55 christos Exp $");
 #endif
 #endif /* not lint */
 
+#include <stdio.h>
 #include <stdlib.h>
 #include <limits.h>
 

Reply via email to