scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 5e295214e4eddad0eb9be0b88398ed4137269694
parent e60a9960ac6986677dc7bd54e6d6e268f8be513b
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Wed, 15 Jul 2015 22:15:52 +0200

Remove inline from hash()

Who need it?

Diffstat:
Mcc1/symbol.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cc1/symbol.c b/cc1/symbol.c @@ -36,7 +36,7 @@ dumpstab(char *msg) } #endif -static inline unsigned +static unsigned hash(const char *s) { unsigned c, h;