scc

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

commit 4f72b05432ce96689a4c80cd5cb1d4cd88d6aacd
parent 8f450b03aa40bfc083c9a9753157b9bcf591eeb3
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);