diff options
author | Ken Raeburn <raeburn@cygnus> | 1995-10-06 01:37:30 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1995-10-06 01:37:30 +0000 |
commit | 2c5eb48d3a0ebe0c197fe3d3dc2acf1d5f95d04d (patch) | |
tree | abe7d7ce37834ec2f60ae8c2cc34403532b2858b /gas/sb.c | |
parent | 6b0a6eaa68638d9c243ddf986218d8bb0e223928 (diff) | |
download | gdb-2c5eb48d3a0ebe0c197fe3d3dc2acf1d5f95d04d.zip gdb-2c5eb48d3a0ebe0c197fe3d3dc2acf1d5f95d04d.tar.gz gdb-2c5eb48d3a0ebe0c197fe3d3dc2acf1d5f95d04d.tar.bz2 |
* sb.c, macro.c: Include string.h.
Diffstat (limited to 'gas/sb.c')
-rw-r--r-- | gas/sb.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -23,6 +23,8 @@ #include "config.h" #include <stdio.h> +#include <string.h> +#include "libiberty.h" #include "sb.h" /* These routines are about manipulating strings. @@ -63,7 +65,6 @@ sb_build (ptr, size) /* see if we can find one to allocate */ sb_element *e; -#undef abort if (size > sb_max_power_two) abort (); |