Sign in
fuchsia
/
fuchsia
/
refs/heads/releases/dogfood
/
.
/
zircon
/
third_party
/
ulib
/
musl
/
src
/
ipc
/
semop.c
blob: b53c4523b684cc35df171cdeb2c95088743f4438 [
file
] [
log
] [
blame
] [
edit
]
#include
<errno.h>
#include
<sys/sem.h>
int
semop
(
int
id
,
struct
sembuf
*
buf
,
size_t
n
)
{
errno
=
ENOSYS
;
return
-
1
;
}