summary refs log tree commit diff
path: root/libio
diff options
context:
space:
mode:
Diffstat (limited to 'libio')
-rw-r--r--libio/libio.h5
-rw-r--r--libio/stdio.h2
2 files changed, 2 insertions, 5 deletions
diff --git a/libio/libio.h b/libio/libio.h
index 5118b1e980..129c7312c2 100644
--- a/libio/libio.h
+++ b/libio/libio.h
@@ -278,10 +278,7 @@ extern void _IO_flockfile __P ((_IO_FILE *));
 extern void _IO_funlockfile __P ((_IO_FILE *));
 extern int _IO_ftrylockfile __P ((_IO_FILE *));
 
-#ifdef _IO_MTSAFE_IO
-weak_extern (_IO_flockfile)
-weak_extern (_IO_funlockfile)
-#else
+#ifndef _IO_MTSAFE_IO
 # define _IO_flockfile(_fp) /**/
 # define _IO_funlockfile(_fp) /**/
 # define _IO_ftrylockfile(_fp) /**/
diff --git a/libio/stdio.h b/libio/stdio.h
index a47b663cae..7e09786215 100644
--- a/libio/stdio.h
+++ b/libio/stdio.h
@@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
 
 /*
- *	ANSI Standard: 4.9 INPUT/OUTPUT <stdio.h>
+ *	ISO C Standard: 4.9 INPUT/OUTPUT	<stdio.h>
  */
 
 #ifndef _STDIO_H