Files
CMake/Tests/COnly/libc2.c
Brad King b7a5f2732d PellesC: Add minimal support for this C compiler
Add bare minimum functionality to compile C code and link on Windows.
Explicitly label tests that are expected to work with `CFLAGS=-Ze`.

Leave out documentation for now because this is not usable in general.

Issue: #21536
Inspired-by: Serguei E. Leontiev <leo@sai.msu.ru>
2026-04-07 09:43:24 -04:00

10 lines
102 B
C

#include "libc2.h"
#ifdef __POCC__
CM_TEST_LIB_EXPORT
#endif
float LibC2Func(void)
{
return 1.0;
}