From 027a73a903af306449710ce12bc09e0e3550c6c9 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Thu, 4 Aug 2016 10:16:59 -0500 Subject: Make xopen() skip stdin/stdout/stderr, add xopen_stdio() if you want stdout, add xopenro() that takes one argument and understands "-" means stdin, and switch over lots of users. --- lib/lib.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/lib.h') diff --git a/lib/lib.h b/lib/lib.h index c3aa7e72..520a5ed6 100644 --- a/lib/lib.h +++ b/lib/lib.h @@ -130,6 +130,9 @@ void xaccess(char *path, int flags); void xunlink(char *path); int xcreate(char *path, int flags, int mode); int xopen(char *path, int flags); +int xcreate_stdio(char *path, int flags, int mode); +int xopen_stdio(char *path, int flags); +int xopenro(char *path); void xpipe(int *pp); void xclose(int fd); int xdup(int fd); -- cgit v1.2.3