scc

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

commit 99e91604a408ac2a75a72697a3572cd9c66c8c58
parent d48d40ffe69af6852195653572de9c1004c54af9
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sat, 30 Oct 2021 21:21:00 +0200

cc/posix: Update default list of include path

The libc modified the list of required include paths, but
the list contained in the posix driver was not updated at
all.

Diffstat:
Minclude/scc/scc/sysincludes.def.h | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/include/scc/scc/sysincludes.def.h b/include/scc/scc/sysincludes.def.h @@ -2,6 +2,7 @@ char *sysincludes[] = { "%p/include/bits/%a/", "%p/include/bits/%s/", + "%p/include/bits/%s/%a/", "%p/include/", NULL };