omit keyword 'struct'

This commit is contained in:
Robert Swiecki
2018-02-10 15:50:12 +01:00
parent 01606a0707
commit 4494deffa7
30 changed files with 120 additions and 120 deletions

View File

@@ -30,12 +30,12 @@
namespace subproc {
void runChild(struct nsjconf_t* nsjconf, int fd_in, int fd_out, int fd_err);
int countProc(struct nsjconf_t* nsjconf);
void displayProc(struct nsjconf_t* nsjconf);
void killAll(struct nsjconf_t* nsjconf);
void runChild(nsjconf_t* nsjconf, int fd_in, int fd_out, int fd_err);
int countProc(nsjconf_t* nsjconf);
void displayProc(nsjconf_t* nsjconf);
void killAll(nsjconf_t* nsjconf);
/* Returns the exit code of the first failing subprocess, or 0 if none fail */
int reapProc(struct nsjconf_t* nsjconf);
int reapProc(nsjconf_t* nsjconf);
int systemExe(const char** argv, char** env);
pid_t cloneProc(uintptr_t flags);