o Add missing ';' so this compiles

o Can't use NULL since we don't include stdio.h
This commit is contained in:
Todd C. Miller
2001-12-08 19:36:48 +00:00
parent 9af30ba66e
commit 0cee8304a7

View File

@@ -57,7 +57,7 @@ sigaction(signo, sa, osa)
sa = &nsa;
}
error = sigvec(signo, sa, osa)
error = sigvec(signo, sa, osa);
if (!error && osa)
osa->sa_flags ^= SV_INTERRUPT; /* flip SV_INTERRUPT as above */
@@ -130,7 +130,7 @@ sigprocmask(how, set, oset)
int mask;
/* If 'set' is NULL the user just wants the current signal mask. */
if (set == NULL)
if (set == 0)
mask = sigblock(0);
else
switch (how) {