aboutsummaryrefslogtreecommitdiffstats
path: root/edify
diff options
context:
space:
mode:
Diffstat (limited to 'edify')
-rw-r--r--edify/expr.h2
-rw-r--r--edify/lexer.l2
2 files changed, 4 insertions, 0 deletions
diff --git a/edify/expr.h b/edify/expr.h
index 1462531..8e1c638 100644
--- a/edify/expr.h
+++ b/edify/expr.h
@@ -17,6 +17,8 @@
#ifndef _EXPRESSION_H
#define _EXPRESSION_H
+#include <unistd.h>
+
#include "yydefs.h"
#define MAX_STRING_LEN 1024
diff --git a/edify/lexer.l b/edify/lexer.l
index 2c4489c..fb2933b 100644
--- a/edify/lexer.l
+++ b/edify/lexer.l
@@ -15,6 +15,8 @@
* limitations under the License.
*/
+#include <string.h>
+
#include "expr.h"
#include "yydefs.h"
#include "parser.h"