summaryrefslogtreecommitdiffstats
path: root/workspace/customdhcpcd/src/customdhcpcd.c
diff options
context:
space:
mode:
authorNiklas2011-07-11 16:55:28 +0200
committerNiklas2011-07-11 16:55:28 +0200
commitf173b5d9e29c2f107eee9ab1186af9fc1fc0ff31 (patch)
treeb7e18b7ba44bb74e80486717820bbf720157549a /workspace/customdhcpcd/src/customdhcpcd.c
parentupdated the LogReceiver and LogWriter. we are now able to send and receive St... (diff)
downloadfbgui-f173b5d9e29c2f107eee9ab1186af9fc1fc0ff31.tar.gz
fbgui-f173b5d9e29c2f107eee9ab1186af9fc1fc0ff31.tar.xz
fbgui-f173b5d9e29c2f107eee9ab1186af9fc1fc0ff31.zip
added the custom dhcpcd client to git.
Diffstat (limited to 'workspace/customdhcpcd/src/customdhcpcd.c')
-rw-r--r--workspace/customdhcpcd/src/customdhcpcd.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/workspace/customdhcpcd/src/customdhcpcd.c b/workspace/customdhcpcd/src/customdhcpcd.c
new file mode 100644
index 0000000..7c5e219
--- /dev/null
+++ b/workspace/customdhcpcd/src/customdhcpcd.c
@@ -0,0 +1,17 @@
+/*
+ ============================================================================
+ Name : customdhcpcd.c
+ Author : Niklas Goby
+ Version :
+ Copyright : Your copyright notice
+ Description : Hello World in C, Ansi-style
+ ============================================================================
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(void) {
+ puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */
+ return EXIT_SUCCESS;
+}