summaryrefslogtreecommitdiff
path: root/libc/libio/setlinebuf.c
diff options
context:
space:
mode:
authorjoseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2012-05-26 17:46:57 +0000
committerjoseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2012-05-26 17:46:57 +0000
commitd8d5895e420d4976fca22b9bd9e1edc3094ebf30 (patch)
treef96c015c14ac0428150153ba98f7a681ff021931 /libc/libio/setlinebuf.c
parent62eb53f68d92687a028f3c515489b30e3df1d979 (diff)
downloadeglibc2-d8d5895e420d4976fca22b9bd9e1edc3094ebf30.tar.gz
Merge changes between r18519 and r18730 from /fsf/trunk.
git-svn-id: svn://svn.eglibc.org/trunk@18731 7b3dc134-2b1b-0410-93df-9e9f96275f8d
Diffstat (limited to 'libc/libio/setlinebuf.c')
-rw-r--r--libc/libio/setlinebuf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/libio/setlinebuf.c b/libc/libio/setlinebuf.c
index 65f7fdca9..e0db23ced 100644
--- a/libc/libio/setlinebuf.c
+++ b/libc/libio/setlinebuf.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 1997, 2002 Free Software Foundation, Inc.
+/* Copyright (C) 1993-2012 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
@@ -33,5 +33,5 @@ void
setlinebuf (stream)
_IO_FILE *stream;
{
- INTUSE(_IO_setvbuf) (stream, NULL, 1, 0);
+ _IO_setvbuf (stream, NULL, 1, 0);
}