minix/servers/pfs/misc.c
Thomas Veerman 5d78cefaf2 Clean up PFS
2010-05-28 09:39:18 +00:00

15 lines
326 B
C

#include "fs.h"
/*===========================================================================*
* fs_sync *
*===========================================================================*/
PUBLIC int fs_sync()
{
/* Perform the sync() system call. No-op on this FS. */
return(OK); /* sync() can't fail */
}