diff options
author | Roland McGrath <roland@gnu.org> | 1995-09-23 05:00:02 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-09-23 05:00:02 +0000 |
commit | cd2a2678dec84bd9acea1abcbf637517f37cb51f (patch) | |
tree | dab14b93931c37967589b8ae24b510adc4c722eb /boot | |
parent | e81ae24d67c7f7f3551297a7c46e783a0c036ac3 (diff) |
(S_io_pathconf): New function.
Diffstat (limited to 'boot')
-rw-r--r-- | boot/boot.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/boot/boot.c b/boot/boot.c index 8a0b02dc..70a6d9c6 100644 --- a/boot/boot.c +++ b/boot/boot.c @@ -2066,6 +2066,15 @@ S_io_sigio (mach_port_t obj, return EOPNOTSUPP; } + +kern_return_t +S_io_pathconf (mach_port_t obj, + mach_port_t reply_port, + mach_msg_type_name_t reply_type, + int name, int *value) +{ + return EOPNOTSUPP; +} |