Deleted Added
full compact
sync.c (78466) sync.c (90111)
1/*
2 * Copyright (c) 1987, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 28 unchanged lines hidden (view full) ---

37 The Regents of the University of California. All rights reserved.\n";
38#endif /* not lint */
39
40#ifndef lint
41#if 0
42static char sccsid[] = "@(#)sync.c 8.1 (Berkeley) 5/31/93";
43#endif
44static const char rcsid[] =
1/*
2 * Copyright (c) 1987, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 28 unchanged lines hidden (view full) ---

37 The Regents of the University of California. All rights reserved.\n";
38#endif /* not lint */
39
40#ifndef lint
41#if 0
42static char sccsid[] = "@(#)sync.c 8.1 (Berkeley) 5/31/93";
43#endif
44static const char rcsid[] =
45 "$FreeBSD: head/bin/sync/sync.c 78466 2001-06-19 12:03:14Z des $";
45 "$FreeBSD: head/bin/sync/sync.c 90111 2002-02-02 06:50:57Z imp $";
46#endif /* not lint */
47
48#include <stdlib.h>
49#include <unistd.h>
50
46#endif /* not lint */
47
48#include <stdlib.h>
49#include <unistd.h>
50
51int main __P((void));
52
53int
51int
54main()
52main(int argc __unused, char *argv[] __unused)
55{
56 sync();
57 exit(0);
58}
53{
54 sync();
55 exit(0);
56}