new _doprnt doesn't support %[A-Z]
[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 *
5 * Redistribution and use in source and binary forms are permitted
6 * provided that this notice is preserved and that due credit is given
7 * to the University of California at Berkeley. The name of the University
8 * may not be used to endorse or promote products derived from this
9 * software without specific written prior permission. This software
10 * is provided ``as is'' without express or implied warranty.
11 */
12
13#ifndef lint
14char copyright[] =
15"@(#) Copyright (c) 1987 Regents of the University of California.\n\
16 All rights reserved.\n";
17#endif /* not lint */
18
19#ifndef lint
20static char sccsid[] = "@(#)sync.c 4.2 (Berkeley) %G%";
21#endif /* not lint */
22
7b65633f
BJ
23main()
24{
7b65633f 25 sync();
1dc93b42 26 exit(0);
7b65633f 27}