From a8fe7bce0ea33f71485cf8c2e4c8330831c849ce Mon Sep 17 00:00:00 2001 From: Joursoir Date: Fri, 26 Feb 2021 13:36:16 +0000 Subject: rename handerror to xstd; create and use some routines --- src/handerror.c | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 src/handerror.c (limited to 'src/handerror.c') diff --git a/src/handerror.c b/src/handerror.c deleted file mode 100644 index 218619d..0000000 --- a/src/handerror.c +++ /dev/null @@ -1,30 +0,0 @@ -#include -#include -#include -#include - -void callError(int num) -{ - fprintf(stderr, "lpass: Sorry, there was an error in the program [#%d]\n", num); - exit(3); -} - -void printError(const char *text) -{ - fprintf(stderr, "%s", text); - exit(4); -} - -void easyFork(char *name, char *arguments[]) -{ - int pid; - pid = fork(); - if(pid == -1) callError(100); - if(pid == 0) { /* new process */ - execvp(name, arguments); - perror(name); - exit(4); - } - wait(&pid); -} - -- cgit v1.2.3-18-g5258