summaryrefslogtreecommitdiffstats
path: root/lib/libcurses/base/lib_insdel.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2001-01-22 18:01:32 +0000
committermillert <millert@openbsd.org>2001-01-22 18:01:32 +0000
commit84af20cee44481ef9eb2070c76702603863c1a4c (patch)
treeb232b1727be5b5b1854432f2b87c149f7522cb9d /lib/libcurses/base/lib_insdel.c
parentfix memory leaks in SSH2 key exchange; ok markus@ (diff)
downloadwireguard-openbsd-84af20cee44481ef9eb2070c76702603863c1a4c.tar.xz
wireguard-openbsd-84af20cee44481ef9eb2070c76702603863c1a4c.zip
Update to ncurses-5.2-20010114
Diffstat (limited to 'lib/libcurses/base/lib_insdel.c')
-rw-r--r--lib/libcurses/base/lib_insdel.c25
1 files changed, 13 insertions, 12 deletions
diff --git a/lib/libcurses/base/lib_insdel.c b/lib/libcurses/base/lib_insdel.c
index 51dcc51124e..9c02cfda019 100644
--- a/lib/libcurses/base/lib_insdel.c
+++ b/lib/libcurses/base/lib_insdel.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: lib_insdel.c,v 1.1 1999/01/18 19:09:49 millert Exp $ */
+/* $OpenBSD: lib_insdel.c,v 1.2 2001/01/22 18:01:40 millert Exp $ */
/****************************************************************************
- * Copyright (c) 1998 Free Software Foundation, Inc. *
+ * Copyright (c) 1998,2000 Free Software Foundation, Inc. *
* *
* Permission is hereby granted, free of charge, to any person obtaining a *
* copy of this software and associated documentation files (the *
@@ -44,21 +44,22 @@
#include <curses.priv.h>
-MODULE_ID("$From: lib_insdel.c,v 1.8 1998/02/11 12:13:55 tom Exp $")
+MODULE_ID("$From: lib_insdel.c,v 1.10 2000/12/10 02:43:27 tom Exp $")
-int
+NCURSES_EXPORT(int)
winsdelln(WINDOW *win, int n)
{
-int code = ERR;
+ int code = ERR;
- T((T_CALLED("winsdel(%p,%d)"), win, n));
+ T((T_CALLED("winsdel(%p,%d)"), win, n));
- if (win) {
- if (n != 0) {
- _nc_scroll_window(win, -n, win->_cury, win->_maxy, _nc_background(win));
+ if (win) {
+ if (n != 0) {
+ _nc_scroll_window(win, -n, win->_cury, win->_maxy,
+ _nc_background(win));
_nc_synchook(win);
- }
- code = OK;
}
- returnCode(code);
+ code = OK;
+ }
+ returnCode(code);
}