Moved PDC_slk_calc() prototype to slk.c.

This commit is contained in:
William McBrine
2006-07-16 01:26:23 +00:00
parent de4000af6f
commit c4a6115e78
2 changed files with 4 additions and 4 deletions

View File

@@ -15,7 +15,7 @@
* See the file maintain.er for details of the current maintainer. *
************************************************************************/
/* $Id: curspriv.h,v 1.87 2006/07/16 00:45:15 wmcbrine Exp $ */
/* $Id: curspriv.h,v 1.88 2006/07/16 01:26:23 wmcbrine Exp $ */
/* CURSPRIV.H
@@ -122,7 +122,6 @@ int PDC_set_ctrl_break(bool);
int PDC_set_cursor_mode(int, int);
int PDC_set_font(int);
int PDC_set_rows(int);
void PDC_slk_calc(void);
void PDC_sync(WINDOW *);
int PDC_sysgetch(void);
void PDC_transform_line(int);

View File

@@ -33,7 +33,7 @@
#undef slk_attroff
#undef slk_color
RCSID("$Id: slk.c,v 1.23 2006/06/19 03:36:38 wmcbrine Exp $");
RCSID("$Id: slk.c,v 1.24 2006/07/16 01:26:23 wmcbrine Exp $");
/*man-start**************************************************************
@@ -118,6 +118,7 @@ static int label_line = 0;
void (*PDC_initial_slk)(void);
static void PDC_slk_init(void);
static void PDC_slk_calc(void);
static struct {
char label[32];
@@ -487,7 +488,7 @@ static void PDC_slk_init(void)
touchwin(SP->slk_winptr);
}
void PDC_slk_calc(void)
static void PDC_slk_calc(void)
{
int i, center, col = 0;