aboutsummaryrefslogtreecommitdiff
path: root/src/base/error/exits.c
blob: 6be7d3bf9293c2284ab13cce939575d91e846ac7 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "internal.h"

void
exits(char *s)
{
    if(s == nil || *s == 0)
        exit(0);

    fputs(s, stderr);
    exit(1);
}