Moved the internet module to c

This commit is contained in:
Manuel Palenzuela 2019-10-24 18:33:10 +01:00
parent fcd3bd4511
commit 26d3628594
2 changed files with 10 additions and 0 deletions

Binary file not shown.

10
modules/src/internet.c Normal file
View file

@ -0,0 +1,10 @@
#include <stdio.h>
int main()
{
char *internet_icon = "";
printf("%s\n", internet_icon);
return 0;
}