diff options
author | Roland McGrath <roland@gnu.org> | 1995-08-28 20:57:08 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-08-28 20:57:08 +0000 |
commit | 4327dfc935ff06f2b82fd5346eb4460630bd48c4 (patch) | |
tree | 45fb5f4babf8130a81862b95ca4856b9d838e0ea | |
parent | da75cd56c38b0a31bb7749d58ee1a7f2f925606f (diff) |
(S_fsys_forward): New stub function.
-rw-r--r-- | exec/exec.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/exec/exec.c b/exec/exec.c index 562e49d8..93aa6906 100644 --- a/exec/exec.c +++ b/exec/exec.c @@ -1906,8 +1906,12 @@ S_fsys_init (fsys_t fsys, return EOPNOTSUPP; } - - +kern_return_t +S_fsys_forward (fsys_t fsys, mach_port_t requestor, + char *argv, mach_msg_type_name_t argvlen) +{ + return EOPNOTSUPP; +} /* RPC sent on the bootstrap port. */ |