Files
clion-custom-defined-compil…/CMake-SDCC/cmain.c
Ilia Motornyi dbe42378d9 SDCC/STM8 added
2021-10-13 17:36:12 +03:00

23 lines
302 B
C

#include <stdio.h>
#pragma message ("Compile C")
int getInt();
long long fn() {
return 3ll;
}
void fan(unsigned int x) {
const int res = x == 123;
if (x == 456) {}
}
int main() {
puts("Hello, World from C!");
return 0;
}
int putchar(int c) {
//fake function
return 1;
}