]> git.ipfire.org Git - thirdparty/glibc.git/blame - libio/ioputs.c
Sat Nov 18 16:46:01 1995 Ulrich Drepper <drepper@gnu.ai.mit.edu>
[thirdparty/glibc.git] / libio / ioputs.c
CommitLineData
96aa2d94
RM
1/* Copyright (C) 1993 Free Software Foundation
2
3This file is part of the GNU IO Library. This library is free
4software; you can redistribute it and/or modify it under the
5terms of the GNU General Public License as published by the
6Free Software Foundation; either version 2, or (at your option)
7any later version.
8
9This library is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this library; see the file COPYING. If not, write to the Free
16Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18As a special exception, if you link this library with files
19compiled with a GNU compiler to produce an executable, this does not cause
20the resulting executable to be covered by the GNU General Public License.
21This exception does not however invalidate any other reasons why
22the executable file might be covered by the GNU General Public License. */
23
24#include "libioP.h"
25#include <string.h>
26
27int
28_IO_puts (str)
29 const char *str;
30{
31 _IO_size_t len = strlen (str);
32 if (_IO_sputn (_IO_stdout, str, len) != len)
33 return EOF;
34 if (_IO_putc ('\n', _IO_stdout) == EOF)
35 return EOF;
36 return len+1;
37}
38weak_alias (_IO_puts, puts)