19 lines
		
	
	
		
			406 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			406 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "fs.h"
 | 
						|
#include <fcntl.h>
 | 
						|
#include <minix/vfsif.h>
 | 
						|
#include "buf.h"
 | 
						|
#include "inode.h"
 | 
						|
 | 
						|
 | 
						|
/*===========================================================================*
 | 
						|
 *				fs_sync					     *
 | 
						|
 *===========================================================================*/
 | 
						|
PUBLIC int fs_sync()
 | 
						|
{
 | 
						|
/* Perform the sync() system call.  No-op on this FS. */
 | 
						|
 | 
						|
  return(OK);		/* sync() can't fail */
 | 
						|
}
 | 
						|
 | 
						|
 |