unlink.c (272B)
1 /* 2 * unlink.c - FUSE unlink function 3 * 4 * Created on: Mar 14, 2012 5 * Author: mg 6 * 7 * Remove a file 8 * 9 * */ 10 11 #include <string.h> 12 #include <errno.h> 13 #include <sys/types.h> 14 #include <sys/stat.h> 15 #include <fuse.h> 16 17 18 int 19 gn_unlink (const char *path) 20 { 21 return 0; 22 }