scc

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

commit 8426988151d94d69a482e6275777d3f7275dbabe
parent 1b51b30c2d7d831f8e8ef83b254fe6cd2052ff89
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 22 Mar 2022 09:06:32 +0100

tests/cc: Add test 0199-voidpcast.c

Diffstat:
Atests/cc/execute/0199-voidpcast.c | 12++++++++++++
Mtests/cc/execute/scc-tests.lst | 1+
2 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/tests/cc/execute/0199-voidpcast.c b/tests/cc/execute/0199-voidpcast.c @@ -0,0 +1,12 @@ +int +casecmp(char *l2) +{ + unsigned char *l=(void*)l2; + return 0; +} + +int +main(void) +{ + return 0; +} diff --git a/tests/cc/execute/scc-tests.lst b/tests/cc/execute/scc-tests.lst @@ -189,3 +189,4 @@ 0196-invalidchar.c 0197-cppcomment.c 0198-nullcpp.c +0199-voidpcast.c [TODO]