diff options
author | Steve Chamberlain <sac@cygnus> | 1991-11-12 04:26:12 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1991-11-12 04:26:12 +0000 |
commit | b773e0e582eca98a54dfc24741084a64406f3fb0 (patch) | |
tree | 42dacd5f70189a6aa8755c30d2f9df60eb6f2a6a /ld/ldsym.c | |
parent | 285b1325d9e3c6fadbcf2c7e88cbd11c5948a093 (diff) | |
download | gdb-b773e0e582eca98a54dfc24741084a64406f3fb0.zip gdb-b773e0e582eca98a54dfc24741084a64406f3fb0.tar.gz gdb-b773e0e582eca98a54dfc24741084a64406f3fb0.tar.bz2 |
uses __inline for now for gcc
Diffstat (limited to 'ld/ldsym.c')
-rw-r--r-- | ld/ldsym.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -87,8 +87,9 @@ static ldsym_type *global_symbol_hash_table[TABSIZE]; /* Compute the hash code for symbol name KEY. */ static #ifdef __GNUC__ -inline +__inline #endif + int DEFUN(hash_string,(key), CONST char *key) @@ -106,7 +107,7 @@ DEFUN(hash_string,(key), static #ifdef __GNUC__ -inline +__inline #endif ldsym_type *bp; ldsym_type * DEFUN(search,(key,hashval) , |