From d45d53cff66d6aeab21ad98e10f410b815ef1fcc Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Tue, 10 Jul 2018 19:52:25 +0200 Subject: [PATCH] add main.c --- main.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 main.c diff --git a/main.c b/main.c new file mode 100644 index 0000000..bc172b9 --- /dev/null +++ b/main.c @@ -0,0 +1,19 @@ +/* + * GccApplication1.c + * + * Created: 10.07.2018 19:39:28 + * Author : dozed + */ + +#include + + +int main(void) +{ + /* Replace with your application code */ + while (1) + { + printf("test"); + } +} +