tests/Misc./opener.c
2024-12-10 20:40:17 +01:00

9 lines
185 B
C

/* @BAKE
gcc -o $* $@
strace ./opener
@STOP
*/
// NOTE: this file is for testing strace, not C
#include <fcntl.h>
signed main() { open("example.txt", O_CREAT | O_WRONLY); }