blob: 90753bb8d2b9933cf590f57f13502b843ec0f1fe [file] [log] [blame]
Hector Chucd9d72b2009-11-30 11:53:11 -08001// Copyright 2009 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5#include <u.h>
6#include <libc.h>
7
8int fork()
9{
10 return -1;
11}
12
13int p9rfork(int flags)
14{
15 return -1;
16}
17
18Waitmsg *p9wait()
19{
20 return 0;
21}
22
23int p9waitpid()
24{
25 return -1;
26}