15 lines
228 B
C
15 lines
228 B
C
|
|
#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;
|
||
|
|
}
|