aboutsummaryrefslogtreecommitdiff
path: root/modules/src
diff options
context:
space:
mode:
authorArchie Hilton <archie.hilton1@gmail.com>2019-10-25 12:43:29 +0100
committerGitHub <noreply@github.com>2019-10-25 12:43:29 +0100
commit7cecb2d92b9aa2aa981dd9b2847f3624189f93e8 (patch)
tree73ddc9698c52f85c4665287fd352ac74fa770357 /modules/src
parent570963e08c2b95b2ba0ba97dfed401dd0f06a4e3 (diff)
parentfe7633cd1b14275540dfba051b67c6bcef03ecc7 (diff)
Merge pull request #3 from thytom/parallel
Parallel stuff + New modules
Diffstat (limited to 'modules/src')
-rw-r--r--modules/src/internet.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/src/internet.c b/modules/src/internet.c
new file mode 100644
index 0000000..d0f6afd
--- /dev/null
+++ b/modules/src/internet.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+
+int main()
+{
+ char *internet_icon = "";
+
+ printf("%s\n", internet_icon);
+
+ return 0;
+}