scc

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

commit 202a1a41c373981049dbb183f03a3179c3c04f5c
parent 6c767955cd666dc95c5b90cc171e7f7b9b127400
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon, 26 Feb 2018 15:06:03 +0000

[lib/c] Rename assert.c to __assert.c

It is better to keep the name of the file synchronized with
the name of the symbol that it exports.

Diffstat:
Rlib/c/assert.c -> lib/c/__assert.c | 0
Mlib/c/target/objlst.mk | 2+-
2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/c/assert.c b/lib/c/__assert.c diff --git a/lib/c/target/objlst.mk b/lib/c/target/objlst.mk @@ -12,7 +12,7 @@ OBJ = bsearch.o qsort.o \ setbuf.o setvbuf.o \ fclose.o fopen.c freopen.c _fpopen.o stdio.o \ realloc.o calloc.o malloc.o \ - assert.o strcpy.o strcmp.o strlen.o strchr.o \ + __assert.o strcpy.o strcmp.o strlen.o strchr.o \ strrchr.o strcat.o strncmp.o strncpy.o strncat.o strcoll.o \ strxfrm.o strstr.o strspn.o strcspn.o strpbrk.o strtok.o \ memset.o memcpy.o memmove.o memcmp.o memchr.o \