diff options
author | jb <jb@FreeBSD.org> | 1998-02-20 04:33:03 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-02-20 04:33:03 +0000 |
commit | 0c290fd53e4ef28be441be8355d350329b5c3804 (patch) | |
tree | 11d2c91a30ebce50e2b505e16e9555d57d18f804 /usr.bin/yacc | |
parent | 78fe14dd306d7197c2607622fbaa56f153c7734b (diff) | |
download | FreeBSD-src-0c290fd53e4ef28be441be8355d350329b5c3804.zip FreeBSD-src-0c290fd53e4ef28be441be8355d350329b5c3804.tar.gz |
Add #include <string.h> to get prototypes.
Diffstat (limited to 'usr.bin/yacc')
-rw-r--r-- | usr.bin/yacc/output.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/yacc/output.c b/usr.bin/yacc/output.c index cc893bb..3d32c06 100644 --- a/usr.bin/yacc/output.c +++ b/usr.bin/yacc/output.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: output.c,v 1.8 1997/04/28 03:36:12 steve Exp $ + * $Id: output.c,v 1.9 1997/04/29 03:05:38 steve Exp $ */ #ifndef lint @@ -41,6 +41,7 @@ static char const sccsid[] = "@(#)output.c 5.7 (Berkeley) 5/24/93"; #endif /* not lint */ #include <stdlib.h> +#include <string.h> #include "defs.h" static int default_goto __P((int)); |