Text file src/lib9/win32.c
1 // 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 8 int fork() 9 { 10 return -1; 11 } 12 13 int p9rfork(int flags) 14 { 15 return -1; 16 } 17 18 Waitmsg *p9wait() 19 { 20 return 0; 21 } 22 23 int p9waitpid() 24 { 25 return -1; 26 }