diff options
author | David Leonard <d@cvs.openbsd.org> | 1998-12-21 07:18:23 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1998-12-21 07:18:23 +0000 |
commit | 03f151fd3bdf033b52b378c56033aea57f0366ff (patch) | |
tree | d8106610c96e56d853c76c76b325ca6040cad309 /lib | |
parent | 25a5b37c8ca31dbc4273494b9193ede080e238d1 (diff) |
remove mit pthread hangover
Diffstat (limited to 'lib')
-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"); |