Files
CMake/Tests/TargetName/executables/hello_world.c
Brad King 91987aec24 Tests: Add missing return types to C function prototypes
These were diagnosed by a Clang 15 development version.
2022-05-13 11:07:17 -04:00

7 lines
78 B
C

#include <stdio.h>
int main(void)
{
printf("hello, world\n");
return 0;
}