summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1998-12-31 20:14:08 +0000
committerRoland McGrath <roland@gnu.org>1998-12-31 20:14:08 +0000
commit9284a80feec62e915e02b19f85068f9bae084c92 (patch)
treed5fad0f23a701658d6611ecb16eaa0b51b25395c
parent2abeaddff3fdcd15ad25e918708c88ced39b4e90 (diff)
renamed to syncfs.c, which see
-rw-r--r--utils/sync.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/utils/sync.c b/utils/sync.c
deleted file mode 100644
index 81099407..00000000
--- a/utils/sync.c
+++ /dev/null
@@ -1,35 +0,0 @@
-/* Call sync synchronously.
- Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
- Written by Michael I. Bushnell.
-
- This file is part of the GNU Hurd.
-
- The GNU Hurd is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License as
- published by the Free Software Foundation; either version 2, or (at
- your option) any later version.
-
- The GNU Hurd is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
-
-#include <hurd.h>
-#include <argp.h>
-#include <version.h>
-
-const char *argp_program_version = STANDARD_HURD_VERSION (sync);
-
-int
-main (int argc, char *argv[])
-{
- struct argp argp =
- {0, 0, 0, "Force all pending disk writes to be done immediately"};
- argp_parse (&argp, argc, argv, 0, 0, 0);
- __USEPORT (CRDIR, __file_syncfs (port, 1, 1));
- return 0;
-}