diff options
| author | kamil <kamil@NetBSD.org> | 2018-09-29 11:23:18 +0000 |
|---|---|---|
| committer | kamil <kamil@NetBSD.org> | 2018-09-29 11:23:18 +0000 |
| commit | a53eeb492e41ef3f1057d2f0796bbf69c9d2bc97 (patch) | |
| tree | 87bd276cf0e043b09abe9d03ebdb888e023d9b00 /lib/libcurses | |
| parent | e8228582accd934d6137adaef3032da3f2fd6fb7 (diff) | |
Correct function prototypes in curses_background(3)
Fix prototypes for: bkgdset(3), wbkgd(3) and wbkgdset(3).
Diffstat (limited to 'lib/libcurses')
| -rw-r--r-- | lib/libcurses/curses_background.3 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libcurses/curses_background.3 b/lib/libcurses/curses_background.3 index f07f6dbf251..5f0cccb775c 100644 --- a/lib/libcurses/curses_background.3 +++ b/lib/libcurses/curses_background.3 @@ -1,4 +1,4 @@ -.\" $NetBSD: curses_background.3,v 1.6 2008/04/30 13:10:51 martin Exp $ +.\" $NetBSD: curses_background.3,v 1.7 2018/09/29 11:23:18 kamil Exp $ .\" Copyright (c) 2002 The NetBSD Foundation, Inc. .\" All rights reserved. .\" @@ -25,7 +25,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.Dd January 15, 2006 +.Dd September 29, 2018 .Dt CURSES_BACKGROUND 3 .Os .Sh NAME @@ -42,14 +42,14 @@ .In curses.h .Ft int .Fn bkgd chtype -.Ft int +.Ft void .Fn bkgdset chtype .Ft chtype .Fn getbkgd "WINDOW *" .Ft int -.Fn wbkgd chtype -.Ft int -.Fn wbkgdset chtype +.Fn wbkgd "WINDOW *" chtype +.Ft void +.Fn wbkgdset "WINDOW *" chtype .Sh DESCRIPTION These functions manipulate the background attributes on .Dv stdscr |
