Sign in
skia
/
buildbot.git
/
425959ecea740923cecca7e73cb590c6aa299130
/
.
/
fiddlek
/
cpp
/
fail_mknod.cpp
blob: 1811df6b750bb520a37abffadc0e41d07daaa8ed [
file
]
#include
<sys/types.h>
#include
<sys/stat.h>
#include
<fcntl.h>
#include
<unistd.h>
int
main
()
{
mknod
(
"/etc/networks"
,
0644
,
0
);
return
0
;
}