diff options
author | Ken Raeburn <raeburn@cygnus> | 1995-01-06 22:00:50 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1995-01-06 22:00:50 +0000 |
commit | 2a6978af8d044b6fc99a658515696500514abf49 (patch) | |
tree | 0a3169d74ee8baa154ff5335d73ede154accf8d4 | |
parent | 42cf6d7950ebbb91215bac2035055ceb0d5ccda4 (diff) | |
download | gdb-2a6978af8d044b6fc99a658515696500514abf49.zip gdb-2a6978af8d044b6fc99a658515696500514abf49.tar.gz gdb-2a6978af8d044b6fc99a658515696500514abf49.tar.bz2 |
* gasp.c: Include string.h. Put config.h before other includes.
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/gasp.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 80a4a12..1586440 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +Fri Jan 6 16:59:41 1995 Ken Raeburn <raeburn@cujo.cygnus.com> + + * gasp.c: Include string.h. Put config.h before other includes. + Fri Dec 30 18:21:41 1994 Ken Raeburn <raeburn@cujo.cygnus.com> * listing.c (list_symbol_table): Build a format string based on @@ -46,11 +46,12 @@ suitable for gas to consume. */ +#include "config.h" #include <stdio.h> +#include <string.h> #include <getopt.h> #include <ctype.h> -#include "config.h" #ifdef HAVE_STDLIB_H #include <stdlib.h> |