lib: fs: implement memory-mapped file i/o
This commit is contained in:
14
lib/libfs/interface/close.c
Normal file
14
lib/libfs/interface/close.c
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "../interface.h"
|
||||
|
||||
#include <errno.h>
|
||||
#include <mango/status.h>
|
||||
|
||||
extern kern_status_t fs_msg_close(
|
||||
xpc_context_t *ctx,
|
||||
const xpc_endpoint_t *sender,
|
||||
int *out_err,
|
||||
void *arg)
|
||||
{
|
||||
*out_err = ENOSYS;
|
||||
return KERN_OK;
|
||||
}
|
||||
Reference in New Issue
Block a user