sent

simple plaintext presentation tool
git clone git://git.suckless.org/sent
Log | Files | Refs | README | LICENSE

commit 3ce84e71700ba35818c7a83630994d765e77599d
parent 0dc8cb9dabb9630681c5cb44206e694e5ebe8514
Author: Markus Teich <markus.teich@stusta.mhn.de>
Date:   Sat,  7 Nov 2015 23:52:35 +0100

don't use EXIT_… cpp defines

Diffstat:
Msent.c | 2+-
Mutil.c | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sent.c b/sent.c @@ -622,5 +622,5 @@ int main(int argc, char *argv[]) run(); cleanup(); - return EXIT_SUCCESS; + return 0; } diff --git a/util.c b/util.c @@ -12,6 +12,6 @@ die(const char *errstr, ...) { va_start(ap, errstr); vfprintf(stderr, errstr, ap); va_end(ap); - exit(EXIT_FAILURE); + exit(1); }