aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1995-09-11 15:48:13 +0000
committerIan Lance Taylor <ian@airs.com>1995-09-11 15:48:13 +0000
commite325f98f13dc355a46f85dc0becace868f095d0a (patch)
treea2540212e52fbb778a286235f54a6fae75fe56e7 /gas
parente103ad308c48ce064d3ccc696181aa4437160fd0 (diff)
downloadgdb-e325f98f13dc355a46f85dc0becace868f095d0a.zip
gdb-e325f98f13dc355a46f85dc0becace868f095d0a.tar.gz
gdb-e325f98f13dc355a46f85dc0becace868f095d0a.tar.bz2
* sb.c: Include "libiberty.h".
* macro.c: Likewise. Also include <stdlib.h> if it exists.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/macro.c4
2 files changed, 9 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 3ef1fab..ef40a48 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+Mon Sep 11 11:39:11 1995 Ian Lance Taylor <ian@cygnus.com>
+
+ * sb.c: Include "libiberty.h".
+ * macro.c: Likewise. Also include <stdlib.h> if it exists.
+
Fri Sep 8 00:27:46 1995 Ian Lance Taylor <ian@cygnus.com>
* app.c (do_scrub_chars): In MRI mode, keep a space before a
diff --git a/gas/macro.c b/gas/macro.c
index 13dd4af..9779997 100644
--- a/gas/macro.c
+++ b/gas/macro.c
@@ -24,6 +24,10 @@
#include "config.h"
#include <stdio.h>
#include <ctype.h>
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
+#include "libiberty.h"
#include "sb.h"
#include "hash.h"
#include "macro.h"