9os

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 92db95a24e31b705a260838378d7abd5e3447cae
parent 43dffedaad77f2a4ea7f5a2d42fb1fdb08bb98a0
Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com>
Date:   Thu, 17 Nov 2022 13:06:27 +0100

os9: Add mount() and bind() to os9.h

these functions are used in several places but without
a prototype and io.h is intended for user space.

Diffstat:
Minclude/os9/os9.h | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/include/os9/os9.h b/include/os9/os9.h @@ -285,6 +285,8 @@ extern Chan *devopen(char *name, int mode); extern int devwrite(Chan *c, void *buf, int n); extern int devread(Chan *c, void *buf, int n); extern int devclose(Chan *c); +extern int mount(char *, char *, char *); +extern int bind(char *, char *); /* sched.c */