minix/servers/pfs/misc.c

15 lines
326 B
C
Raw Normal View History

2009-12-20 21:41:50 +01:00
#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 */
}