* win32-termcap.c (tputs): Return 0.

This commit is contained in:
Daniel Jacobowitz 2006-02-23 18:28:34 +00:00
parent 5c9f7ded98
commit 1e0600be1c
3 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2006-02-23 Daniel Jacobowitz <dan@codesourcery.com>
* win32-termcap.c (tputs): Return 0.
2006-02-21 Mark Kettenis <kettenis@gnu.org>
* configure.ac: Introduce ---enable-werror, which adds -Werror to

View File

@ -1,6 +1,6 @@
/* Win32 termcap emulation.
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
Contributed by CodeSourcery, LLC.
@ -56,6 +56,8 @@ tputs (char *string, int nlines, int (*outfun) ())
{
while (*string)
outfun (*string++);
return 0;
}
char *

View File

@ -1,6 +1,6 @@
/* Win32 termcap emulation.
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
Contributed by CodeSourcery, LLC.
@ -56,6 +56,8 @@ tputs (char *string, int nlines, int (*outfun) ())
{
while (*string)
outfun (*string++);
return 0;
}
char *