Add missing include to sdf_lexor.lex

sdf_lexor.lex was missing the <string.h> include file which defines
strdup and strlen.
This commit is contained in:
Cary R 2008-01-07 12:12:06 -08:00 committed by Stephen Williams
parent 61b6b8358d
commit c9e1e1b5cc
1 changed files with 1 additions and 0 deletions

View File

@ -27,6 +27,7 @@
# include "sdf_parse_priv.h"
# include "sdf_parse.h"
# include <stdlib.h>
# include <string.h>
# include <strings.h>
# include <assert.h>