Sign in
fuchsia
/
fuchsia
/
refs/heads/releases/dogfood
/
.
/
zircon
/
third_party
/
ulib
/
musl
/
src
/
ipc
/
shmat.c
blob: 5fc2f1ace4b323a3a96221c9454fc7bfb30b388b [
file
] [
log
] [
blame
] [
edit
]
#include
<errno.h>
#include
<stdint.h>
#include
<sys/shm.h>
#include
"ipc.h"
void
*
shmat
(
int
id
,
const
void
*
addr
,
int
flag
)
{
errno
=
ENOSYS
;
return
(
void
*)(
intptr_t
)-
1
;
}