/* @(#)msync.c 1.1 92/07/30 SMI */ /* * Copyright (c) 1988 by Sun Microsystems, Inc. */ #include #include /* * Function to synchronize address range with backing store. */ /*LINTLIBRARY*/ msync(addr, len, flags) caddr_t addr; u_int len; int flags; { return (mctl(addr, len, MC_SYNC, flags)); }