aboutsummaryrefslogtreecommitdiff
path: root/libjava/java
diff options
context:
space:
mode:
authorDaniel Berlin <dan@cgsoftware.com>2001-06-26 19:24:09 +0000
committerDaniel Berlin <dberlin@gcc.gnu.org>2001-06-26 19:24:09 +0000
commit639bc36cede2c6e922f869d730a072909014112e (patch)
tree9dffb7e068ecc3a9e9239cd115597cccc31dd855 /libjava/java
parent9596ddd67ef7106cc0d6eac0bcfa8fe24b73f50d (diff)
downloadgcc-639bc36cede2c6e922f869d730a072909014112e.zip
gcc-639bc36cede2c6e922f869d730a072909014112e.tar.gz
gcc-639bc36cede2c6e922f869d730a072909014112e.tar.bz2
toplev.c (display_help): Fix param thinko.
2001-06-26 Daniel Berlin <dan@cgsoftware.com> * toplev.c (display_help): Fix param thinko. * Makefile.in: Fix params.h dependencies. From-SVN: r43589
Diffstat (limited to 'libjava/java')
0 files changed, 0 insertions, 0 deletions
/master'>hjl/pr22298/master Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/misc/sync.c
blob: 2c7fa1e6da188571b392b13f6f24ccc5dd4f6aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* Copyright (C) 1991-2022 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library 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
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   <https://www.gnu.org/licenses/>.  */

#include <errno.h>
#include <unistd.h>

/* Make all changes done to all files actually appear on disk.  */
void
sync (void)
{
  __set_errno (ENOSYS);
}


stub_warning (sync)