mirror of
https://github.com/mabam/CAP.git
synced 2026-01-22 11:21:31 +00:00
20 lines
302 B
C
20 lines
302 B
C
/*
|
|
* $Author: djh $ $Date: 91/02/15 22:50:34 $
|
|
* $Header: fsync.c,v 2.1 91/02/15 22:50:34 djh Rel $
|
|
* $Revision: 2.1 $
|
|
*/
|
|
|
|
/*
|
|
* Fsync() for non-BSD systems.
|
|
*
|
|
* For now, this is a no-op, since we can't force writes without
|
|
* three system calls.
|
|
*/
|
|
|
|
int
|
|
fsync(fd)
|
|
int fd;
|
|
{
|
|
return 0;
|
|
}
|