Got things running for Linux
This commit is contained in:
15
src/main.c
15
src/main.c
@@ -1,3 +1,5 @@
|
||||
#ifdef _WIN32
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdio.h>
|
||||
@@ -107,3 +109,16 @@ int main() {
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif // _WIN32
|
||||
|
||||
#ifdef __linux__
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
printf("Hello linux\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif // __linux__
|
||||
|
||||
Reference in New Issue
Block a user