aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog5
-rw-r--r--src/hyper/htadd.c1
-rw-r--r--src/hyper/lex.c1
3 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9c8cc32b..52cef853 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2012-07-25 Aleksej Saushev <asau@inbox.ru>
+
+ * hyper/htadd.c: Include <string.h>
+ * hyper/lex.c: Likewise.
+
2012-06-10 Gabriel Dos Reis <gdr@cs.tamu.edu>
* interp/io.boot (%SourceLine): New.
diff --git a/src/hyper/htadd.c b/src/hyper/htadd.c
index 89d8626a..d8c32a75 100644
--- a/src/hyper/htadd.c
+++ b/src/hyper/htadd.c
@@ -43,6 +43,7 @@
#include <stdlib.h>
#include <sys/stat.h>
#include <stdlib.h>
+#include <string.h>
#include <locale.h>
#include "cfuns.h"
diff --git a/src/hyper/lex.c b/src/hyper/lex.c
index aa3e4c91..85e3d511 100644
--- a/src/hyper/lex.c
+++ b/src/hyper/lex.c
@@ -62,6 +62,7 @@
#include <ctype.h>
#include <setjmp.h>
#include <stdlib.h>
+#include <string.h>
#include "debug.h"
#include "sockio.h"