sync.c revision 1556
164562Sgshapiro/*
2261363Sgshapiro * Copyright (c) 1987, 1993
364562Sgshapiro *	The Regents of the University of California.  All rights reserved.
464562Sgshapiro *
564562Sgshapiro * Redistribution and use in source and binary forms, with or without
664562Sgshapiro * modification, are permitted provided that the following conditions
764562Sgshapiro * are met:
864562Sgshapiro * 1. Redistributions of source code must retain the above copyright
964562Sgshapiro *    notice, this list of conditions and the following disclaimer.
1064562Sgshapiro * 2. Redistributions in binary form must reproduce the above copyright
1164562Sgshapiro *    notice, this list of conditions and the following disclaimer in the
12266692Sgshapiro *    documentation and/or other materials provided with the distribution.
1364562Sgshapiro * 3. All advertising materials mentioning features or use of this software
1464562Sgshapiro *    must display the following acknowledgement:
1590792Sgshapiro *	This product includes software developed by the University of
1690792Sgshapiro *	California, Berkeley and its contributors.
1764562Sgshapiro * 4. Neither the name of the University nor the names of its contributors
1864562Sgshapiro *    may be used to endorse or promote products derived from this software
1990792Sgshapiro *    without specific prior written permission.
2090792Sgshapiro *
2190792Sgshapiro * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2290792Sgshapiro * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2390792Sgshapiro * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2490792Sgshapiro * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2590792Sgshapiro * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2664562Sgshapiro * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2790792Sgshapiro * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2890792Sgshapiro * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2990792Sgshapiro * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3090792Sgshapiro * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3190792Sgshapiro * SUCH DAMAGE.
3290792Sgshapiro */
3390792Sgshapiro
3464562Sgshapiro#ifndef lint
3590792Sgshapirostatic char copyright[] =
3690792Sgshapiro"@(#) Copyright (c) 1987, 1993\n\
3790792Sgshapiro	The Regents of the University of California.  All rights reserved.\n";
3864562Sgshapiro#endif /* not lint */
3990792Sgshapiro
4098121Sgshapiro#ifndef lint
4190792Sgshapirostatic char sccsid[] = "@(#)sync.c	8.1 (Berkeley) 5/31/93";
4290792Sgshapiro#endif /* not lint */
4390792Sgshapiro
4490792Sgshapiromain()
4590792Sgshapiro{
4690792Sgshapiro	sync();
4790792Sgshapiro	exit(0);
4890792Sgshapiro}
4990792Sgshapiro