-rw-r--r-- 132 cdb-20251021/open_read.c raw
#include <sys/types.h> #include <fcntl.h> #include "open.h" num open_read(const char *fn) { return open(fn,O_RDONLY | O_NDELAY); }