Remove unused macros

This commit is contained in:
Aaron Gyes 2019-02-12 16:10:18 -08:00
parent 8d9089c78b
commit 717718353e
2 changed files with 0 additions and 6 deletions

View File

@ -33,9 +33,6 @@
/// The number of nanoseconds to sleep between attempts to call fork().
#define FORK_SLEEP_TIME 1000000
/// Base open mode to pass to calls to open.
#define OPEN_MASK 0666
/// Fork error message.
#define FORK_ERROR "Could not create child process - exiting"

View File

@ -50,9 +50,6 @@
#include "util.h"
#include "wutil.h" // IWYU pragma: keep
/// Size of buffer for reading buffered output.
#define BUFFER_SIZE 4096
/// Status of last process to exit.
static int last_status = 0;