Skip to content

Commit

Permalink
Update ios_error.h
Browse files Browse the repository at this point in the history
  • Loading branch information
N-Holzschuch committed Jul 8, 2020
1 parent 67a8d13 commit e85ef88
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ios_error.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ extern int ios_killpid(pid_t pid, int sig); // kill the current running command

extern void ios_exit(int errorCode) __dead2; // set error code and exits from the thread.
extern int ios_execv(const char *path, char* const argv[]);
extern int ios_execve(const char *path, char* const argv[], const char** envlist);
extern int ios_execve(const char *path, char* const argv[], char** envlist);
extern int ios_dup2(int fd1, int fd2);
extern char * ios_getenv(const char *name);

Expand All @@ -94,6 +94,7 @@ extern int ios_fputs(const char* s, FILE *stream);
extern int ios_fputc(int c, FILE *stream);
extern int ios_putw(int w, FILE *stream);
extern int ios_fflush(FILE *stream);
extern int ios_gettty(void);

#ifdef __cplusplus
}
Expand Down

0 comments on commit e85ef88

Please sign in to comment.