Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
musl
/
src
/
ipc
/
ftok.c
blob: c36b4b6003af532305ac2b461616d219f11f31b2 [
file
] [
log
] [
blame
]
#include
<sys/ipc.h>
#include
<sys/stat.h>
key_t
ftok
(
const
char
*
path
,
int
id
)
{
struct
stat st
;
if
(
stat
(
path
,
&
st
)
<
0
)
return
-
1
;
return
((
st
.
st_ino
&
0xffff
)
|
((
st
.
st_dev
&
0xff
)
<<
16
)
|
((
id
&
0xffu
)
<<
24
));
}