mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-15 05:01:13 +08:00
* win32-termcap.c (tputs): Return 0.
This commit is contained in:
@ -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>
|
2006-02-21 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
* configure.ac: Introduce ---enable-werror, which adds -Werror to
|
* configure.ac: Introduce ---enable-werror, which adds -Werror to
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Win32 termcap emulation.
|
/* Win32 termcap emulation.
|
||||||
|
|
||||||
Copyright (C) 2005 Free Software Foundation, Inc.
|
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Contributed by CodeSourcery, LLC.
|
Contributed by CodeSourcery, LLC.
|
||||||
|
|
||||||
@ -56,6 +56,8 @@ tputs (char *string, int nlines, int (*outfun) ())
|
|||||||
{
|
{
|
||||||
while (*string)
|
while (*string)
|
||||||
outfun (*string++);
|
outfun (*string++);
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Win32 termcap emulation.
|
/* Win32 termcap emulation.
|
||||||
|
|
||||||
Copyright (C) 2005 Free Software Foundation, Inc.
|
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Contributed by CodeSourcery, LLC.
|
Contributed by CodeSourcery, LLC.
|
||||||
|
|
||||||
@ -56,6 +56,8 @@ tputs (char *string, int nlines, int (*outfun) ())
|
|||||||
{
|
{
|
||||||
while (*string)
|
while (*string)
|
||||||
outfun (*string++);
|
outfun (*string++);
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
|
Reference in New Issue
Block a user