Files
Arquivotheca.Solaris-2.5/uts/common/syscall/sync.c
seta75D 7c4988eac0 Init
2021-10-11 19:38:01 -03:00

24 lines
530 B
C
Executable File

/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
/* Copyright (c) 1994 Sun Microsystems, Inc. */
/* All Rights Reserved */
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
/* The copyright notice above does not evidence any */
/* actual or intended publication of such source code. */
#pragma ident "@(#)sync.c 1.1 94/10/12 SMI" /* SVr4 1.42 */
#include <sys/types.h>
#include <sys/param.h>
#include <sys/errno.h>
#include <sys/systm.h>
#include <sys/vfs.h>
int
syssync()
{
vfs_sync(0);
return (0);
}