diff options
Diffstat (limited to 'libio/__fsetlocking.c')
-rw-r--r-- | libio/__fsetlocking.c | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/libio/__fsetlocking.c b/libio/__fsetlocking.c index b56128f1f0..0542e08dbe 100644 --- a/libio/__fsetlocking.c +++ b/libio/__fsetlocking.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000 Free Software Foundation, Inc. +/* Copyright (C) 2000, 2002 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 @@ -14,19 +14,12 @@ You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. - - As a special exception, if you link the code in this file with - files compiled with a GNU compiler to produce an executable, - that does not cause the resulting executable to be covered by - the GNU Lesser General Public License. This exception does not - however invalidate any other reasons why the executable file - might be covered by the GNU Lesser General Public License. - This exception applies to code released by its copyright holders - in files containing the exception. */ + 02111-1307 USA. */ #include <stdio_ext.h> +#undef __fsetlocking + int __fsetlocking (FILE *fp, int type) { @@ -42,3 +35,4 @@ __fsetlocking (FILE *fp, int type) return result; } +INTDEF(__fsetlocking) |