2026-03-15 09:43:49 +00:00
|
|
|
#include "../interface.h"
|
|
|
|
|
|
|
|
|
|
#include <errno.h>
|
2026-05-28 20:37:44 +01:00
|
|
|
#include <magenta/status.h>
|
2026-03-15 09:43:49 +00:00
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|