#include <sys/wait.h>
#include <unistd.h>
-/* static functions */
+/* static */
static void
bad_malloc(unsigned int size)
{
fprintf(stderr, "fatal: could not malloc() %d bytes\n",
(int) size);
- exit(1);
+ exit(EXIT_FAILURE);
}
-/* extern functions */
+/* extern */
void *
emallocz(unsigned int size)
va_start(ap, errstr);
vfprintf(stderr, errstr, ap);
va_end(ap);
- exit(1);
+ exit(EXIT_FAILURE);
}
void
fprintf(stderr, "dwm: execvp %s", argv[0]);
perror(" failed");
}
- exit (0);
+ exit(EXIT_FAILURE);
}
wait(0);
}