diff options
author | tjr <tjr@FreeBSD.org> | 2003-09-06 16:33:55 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2003-09-06 16:33:55 +0000 |
commit | bcbafed2bb62af8e750a9e1866ad2c7a296aaeba (patch) | |
tree | 10a187c7a07eb4f26a0c8adfb424a85a79547b7b /bin | |
parent | 61aeb4df2eb49c95eb96dcb5f0c5a0ed104a86c1 (diff) | |
download | FreeBSD-src-bcbafed2bb62af8e750a9e1866ad2c7a296aaeba.zip FreeBSD-src-bcbafed2bb62af8e750a9e1866ad2c7a296aaeba.tar.gz |
#include <string.h> for prototypes for strcpy() and strlen().
Submitted by: Stefan Farfeleder
Diffstat (limited to 'bin')
-rw-r--r-- | bin/sh/arith_lex.l | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/sh/arith_lex.l b/bin/sh/arith_lex.l index fead625..98146cb 100644 --- a/bin/sh/arith_lex.l +++ b/bin/sh/arith_lex.l @@ -44,6 +44,8 @@ static char sccsid[] = "@(#)arith_lex.l 8.3 (Berkeley) 5/4/95"; #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include <string.h> + #include "shell.h" #include "y.tab.h" #include "error.h" |