templates/com.nokia.carbide.cpp.templates/templates/projecttemplates/OpenC-HelloWorld/src/Basename.cpp
changeset 2025 6534cbd5fa45
parent 0 fb279309251b
equal deleted inserted replaced
2024:ce61717da98b 2025:6534cbd5fa45
    16 #include <staticlibinit_gcce.h>
    16 #include <staticlibinit_gcce.h>
    17 #endif
    17 #endif
    18 
    18 
    19 int main(void)
    19 int main(void)
    20 {
    20 {
    21 	printf("Hello Open C!\n");
    21 	printf("Hello ANSI C!\n");
    22 	printf("Press a character to exit!");
    22 	printf("Press a character to exit!");
    23 	int c = getchar();
    23 	int c = getchar();
    24 	return 0;
    24 	return 0;
    25 }
    25 }