Sign in
◑
Theme
mojo
/
mojo-tools
/
e72c5b36e0633399dfe0f906be25cdf0fc0935be
/
.
/
fusl
/
src
/
stat
/
mkfifo.c
blob: ce5aff838c0c299f7fc4c2bfed3e9db3838ed8bd [
file
]
#include
<sys/stat.h>
int
mkfifo
(
const
char
*
path
,
mode_t
mode
)
{
return
mknod
(
path
,
mode
|
S_IFIFO
,
0
);
}