scc

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

commit cdfefba9cb3046798ef7eadb81785db8bff31bb5
parent cce24fc7a328fce5fcc597e7aebf1433f8cabd91
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]