diff --git a/Misc./opener.c b/Misc./opener.c new file mode 100644 index 0000000..34bee5c --- /dev/null +++ b/Misc./opener.c @@ -0,0 +1,8 @@ +/* @BAKE + gcc -o $* $@ + strace ./opener + @STOP + */ +// NOTE: this file is for testing strace, not C +#include +signed main() { open("example.txt", O_CREAT | O_WRONLY); }