minix/servers/iso9660fs/misc.c
2009-10-01 14:00:27 +00:00

15 lines
405 B
C

/* Some misc functions */
#include "inc.h"
#include <fcntl.h>
#include <minix/vfsif.h>
/*===========================================================================*
* fs_sync *
*===========================================================================*/
PUBLIC int fs_sync() /* Calling of syncing the filesystem. No action
* is taken */
{
return(OK); /* sync() can't fail */
}