R=austin
DELTA=17  (0 added, 16 deleted, 1 changed)
OCL=34213
CL=34218
 TARG=ptrace
 GOFILES=\
        proc.go\
-       proc_linux.go\
+       proc_$(GOOS).go\
        regs_$(GOOS)_$(GOARCH).go\
 
 include $(GOROOT)/src/Make.pkg
 
 
 package proc
 
-import "syscall"
-
-func newRegs(regs *syscall.PtraceRegs, setter func (*syscall.PtraceRegs) os.Error) Regs {
-       panic("newRegs unimplemented on darwin/386");
-}
 
 // license that can be found in the LICENSE file.
 
 package proc
-
-import "syscall"
-
-func newRegs(regs *syscall.PtraceRegs, setter func (*syscall.PtraceRegs) os.Error) Regs {
-       panic("newRegs unimplemented on darwin/amd64");
-}
 
 
 package proc
 
-import "syscall"
-
-func newRegs(regs *syscall.PtraceRegs, setter func (*syscall.PtraceRegs) os.Error) Regs {
-       panic("newRegs unimplemented on linux/386");
-}