nicer formatting
[tridge/junkcode.git] / fchown.c
1 #include <sys/types.h>
2 #include <sys/stat.h>
3 #include <asm/fcntl.h>
4
5 main()
6 {
7         int fd = open(".", O_DIRECTORY|O_RDONLY);
8         fchown(fd, 2015, 2015);
9 }