comparison lib/lib.h @ 1334:9fd2bcedbeb5 draft

mount: start on option parsing, implement loopback and bind mount autodetection.
author Rob Landley <rob@landley.net>
date Tue, 03 Jun 2014 06:27:24 -0500
parents 85f297591693
children b7598d21ca10
comparison
equal deleted inserted replaced
1333:fc1bb49e58a9 1334:9fd2bcedbeb5
92 void xputc(char c); 92 void xputc(char c);
93 void xflush(void); 93 void xflush(void);
94 pid_t xfork(void); 94 pid_t xfork(void);
95 void xexec_optargs(int skip); 95 void xexec_optargs(int skip);
96 void xexec(char **argv); 96 void xexec(char **argv);
97 pid_t xpopen(char **argv, int *pipes);
98 int xpclose(pid_t pid, int *pipes);
97 void xaccess(char *path, int flags); 99 void xaccess(char *path, int flags);
98 void xunlink(char *path); 100 void xunlink(char *path);
99 int xcreate(char *path, int flags, int mode); 101 int xcreate(char *path, int flags, int mode);
100 int xopen(char *path, int flags); 102 int xopen(char *path, int flags);
101 void xclose(int fd); 103 void xclose(int fd);