strings may no longer be writable (thanks, ANSI!)
[unix-history] / usr / src / bin / sync / sync.c
CommitLineData
1dc93b42
KB
1/*
2 * Copyright (c) 1987 Regents of the University of California.
3 * All rights reserved.
4 *
27c71911 5 * %sccs.include.redist.c%
1dc93b42
KB
6 */
7
8#ifndef lint
9char copyright[] =
10"@(#) Copyright (c) 1987 Regents of the University of California.\n\
11 All rights reserved.\n";
12#endif /* not lint */
13
14#ifndef lint
27c71911 15static char sccsid[] = "@(#)sync.c 4.4 (Berkeley) %G%";
1dc93b42
KB
16#endif /* not lint */
17
7b65633f
BJ
18main()
19{
7b65633f 20 sync();
1dc93b42 21 exit(0);
7b65633f 22}