diff options
author | Silvino <silvino@bk.ru> | 2021-03-03 03:07:44 +0000 |
---|---|---|
committer | punk <punk@libernaut> | 2021-04-21 15:11:33 +0100 |
commit | 452477a2635d85ecf772a5242ce97d9479503bb3 (patch) | |
tree | a2e34d995cef5ac8068ec7047e93b1125c80d175 /dev/c/src/hello | |
parent | 4de5ad72311e351792c251eaf807885a493149a4 (diff) | |
download | doc-452477a2635d85ecf772a5242ce97d9479503bb3.tar.gz |
OpenBSD documentation
dev/c system dev rev
Diffstat (limited to 'dev/c/src/hello')
-rw-r--r-- | dev/c/src/hello/Makefile | 3 | ||||
-rw-r--r-- | dev/c/src/hello/hello.c | 6 |
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; } |