diff options
author | 1998-12-21 07:18:22 +0000 | |
---|---|---|
committer | 1998-12-21 07:18:22 +0000 | |
commit | 8db953c4869ef716ad0f8f7938c18960e630fb07 (patch) | |
tree | 9b100cc162fe4185d84fecf170be2fe2fd90c1de | |
parent | If no mii found on a card that claims to support one, don't attach the (diff) | |
download | wireguard-openbsd-8db953c4869ef716ad0f8f7938c18960e630fb07.tar.xz wireguard-openbsd-8db953c4869ef716ad0f8f7938c18960e630fb07.zip |
remove mit pthread hangover
-rw-r--r-- | lib/libc_r/TEST/test_execve.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc_r/TEST/test_execve.c b/lib/libc_r/TEST/test_execve.c index 409b37bfc1b..81d8a27eade 100644 --- a/lib/libc_r/TEST/test_execve.c +++ b/lib/libc_r/TEST/test_execve.c @@ -46,8 +46,9 @@ main() /* do a dup2 */ dup2(fd, 1); write(1, should_succeed, (size_t)strlen(should_succeed)); +#if i_understood_this _thread_sys_write(1, should_fail, strlen(should_fail)); - +#endif if (execve(argv[0], argv, environ) < OK) err(1, "execve"); |