diff options
-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> |