scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit f43dac0cd22b59a006beb7438240e2d9880d27cc
parent 68f7219f21c64aa4d1816f9c2ab454d90634666c
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 27 Sep 2019 19:22:15 +0200

[libscc] Remove register keyword from a prototype

Diffstat:
Minclude/scc/scc/scc.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/scc/scc/scc.h b/include/scc/scc/scc.h @@ -29,7 +29,7 @@ extern void newitem(struct items *items, char *item); extern void *xmalloc(size_t size); extern void *xcalloc(size_t nmemb, size_t size); extern char *xstrdup(const char *s); -extern void *xrealloc(void *buff, register size_t size); +extern void *xrealloc(void *buff, size_t size); extern Alloc *alloc(size_t size, size_t nmemb); extern void dealloc(Alloc *allocp); extern void *new(Alloc *allocp);