diff options
author | 2002-06-16 23:06:15 +0000 | |
---|---|---|
committer | 2002-06-16 23:06:15 +0000 | |
commit | c0a6f2a4d08d2cd7c686de7aadb83c22ba4b822e (patch) | |
tree | e05854a91d3255f8848a04fd0c5687e524416206 /regress/lib/libpthread/signal/signal.c | |
parent | write output to stdout instead of fprintf to stderr. This brings it (diff) | |
download | wireguard-openbsd-c0a6f2a4d08d2cd7c686de7aadb83c22ba4b822e.tar.xz wireguard-openbsd-c0a6f2a4d08d2cd7c686de7aadb83c22ba4b822e.zip |
write newline before successful test completion
Diffstat (limited to 'regress/lib/libpthread/signal/signal.c')
-rw-r--r-- | regress/lib/libpthread/signal/signal.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/regress/lib/libpthread/signal/signal.c b/regress/lib/libpthread/signal/signal.c index 2d79cf2e08a..815052db03d 100644 --- a/regress/lib/libpthread/signal/signal.c +++ b/regress/lib/libpthread/signal/signal.c @@ -1,4 +1,4 @@ -/* $OpenBSD: signal.c,v 1.3 2001/11/11 23:26:35 deraadt Exp $ */ +/* $OpenBSD: signal.c,v 1.4 2002/06/16 23:06:15 marc Exp $ */ /* David Leonard <d@openbsd.org>, 2001. Public Domain. */ /* @@ -24,6 +24,7 @@ sleeper(arg) sigfillset(&mask); CHECKe(sigprocmask(SIG_SETMASK, &mask, NULL)); ASSERT(sleep(3) == 0); + CHECKe(write(STDOUT_FILENO, "\n", 1)); SUCCEED; } |