syscall-advent

System Call Advent Calendar
Log | Files | Refs

commit 30fd17e36041a6e59c6328272a05346a8cdc33ee
parent b8e17b96ba267f1fd21279f00226f4db7ff2fba3
Author: dwrz <dwrz@dwrz.net>
Date:   Fri, 16 Dec 2022 22:24:42 +0000

Refactor cat

Diffstat:
R01-cat.c -> 01-open/cat.c | 0
A01-open/makefile | 8++++++++
2 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/01-cat.c b/01-open/cat.c diff --git a/01-open/makefile b/01-open/makefile @@ -0,0 +1,8 @@ +cat: cat.c + gcc cat.c -o cat + +run: ./cat + ./cat cat.c makefile + +strace: ./cat + strace ./cat cat.c makefile > /dev/null