+ no-op.c

This commit is contained in:
tth 2021-08-13 09:24:46 +02:00
parent 214305d24e
commit 3e4a076c44
2 changed files with 5 additions and 0 deletions

1
.gitignore vendored
View File

@ -19,6 +19,7 @@ code/thread-demo
code/ex_curses
code/hello
code/arguments
code/no-op

View File

@ -15,3 +15,7 @@ hello: hello.c Makefile
arguments: arguments.c Makefile
gcc -Wall $< -o $@
no-op: no-op.c Makefile
gcc -Wall $< -o $@