about summary refs log tree commit diff stats
path: root/dev/c/src/hello
diff options
context:
space:
mode:
Diffstat (limited to 'dev/c/src/hello')
-rw-r--r--dev/c/src/hello/Makefile3
-rw-r--r--dev/c/src/hello/hello.c6
2 files changed, 6 insertions, 3 deletions
diff --git a/dev/c/src/hello/Makefile b/dev/c/src/hello/Makefile
index a6d9f07..2c0ff2d 100644
--- a/dev/c/src/hello/Makefile
+++ b/dev/c/src/hello/Makefile
@@ -1,7 +1,6 @@
-CC=gcc
 CFLAGS=-Wall
 
-hello: hello.o
+hello: hello.c
 
 clean:
 	rm -f *.o hello
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;
 }