about summary refs log tree commit diff stats
path: root/dev/c/src/hello/hello.c
diff options
context:
space:
mode:
authorpunk <punk@libernaut>2021-04-21 15:42:20 +0100
committerpunk <punk@libernaut>2021-04-21 15:42:20 +0100
commit4107462e9ec1cabaa7f89bd8478caec3f0d5b46a (patch)
treea2e34d995cef5ac8068ec7047e93b1125c80d175 /dev/c/src/hello/hello.c
parentcfce80c5a0b8bc1eccc2f22a0d5d045d29467083 (diff)
parenteac48b5a8d709135a95abcc2243b369095f074f4 (diff)
downloaddoc-4107462e9ec1cabaa7f89bd8478caec3f0d5b46a.tar.gz
Merge branch 'master' into develop
Diffstat (limited to 'dev/c/src/hello/hello.c')
-rw-r--r--dev/c/src/hello/hello.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/dev/c/src/hello/hello.c b/dev/c/src/hello/hello.c
index df66493..092efa5 100644
--- a/dev/c/src/hello/hello.c
+++ b/dev/c/src/hello/hello.c
@@ -1,6 +1,10 @@
 #include <stdio.h>
+#include <unistd.h>
 
 int main() {
-    printf("hello World!");
+	char *name;
+	name = getlogin();
+
+    printf("hello %s!\n", name);
     return 0;
 }