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