Add Posix Target

This commit is contained in:
Christian Dietrich
2021-08-23 16:32:02 +02:00
parent f17065ede9
commit fda664bf4a
7 changed files with 61 additions and 14 deletions

7
arch/posix/lib.c Normal file
View File

@ -0,0 +1,7 @@
#include <stdio.h>
#define MARKER(str) printf(QUOTE(str) "\n")
#define POSIX_PRINTF(...) printf(__VA_ARGS__)
#define MAIN() int main(int argc, char** argv)