More PDC_CDECL removal. (Resume from broken CVS pipe; why does it do

that?)
This commit is contained in:
William McBrine
2006-02-08 17:41:13 +00:00
parent b0ecceeae5
commit d97e9dc8e1
2 changed files with 12 additions and 12 deletions

View File

@@ -22,7 +22,7 @@
#ifdef PDCDEBUG
const char *rcsid_PDCclip =
"$Id: pdcclip.c,v 1.11 2006/02/06 03:13:31 wmcbrine Exp $";
"$Id: pdcclip.c,v 1.12 2006/02/08 17:41:13 wmcbrine Exp $";
#endif
/*man-start*********************************************************************
@@ -52,7 +52,7 @@ const char *rcsid_PDCclip =
**man-end**********************************************************************/
int PDC_CDECL PDC_getclipboard(char **contents, long *length)
int PDC_getclipboard(char **contents, long *length)
{
PDC_LOG(("PDC_getclipboard() - called\n"));
@@ -80,7 +80,7 @@ int PDC_CDECL PDC_getclipboard(char **contents, long *length)
**man-end**********************************************************************/
int PDC_CDECL PDC_setclipboard(char *contents, long length)
int PDC_setclipboard(char *contents, long length)
{
PDC_LOG(("PDC_setclipboard() - called\n"));
@@ -105,7 +105,7 @@ int PDC_CDECL PDC_setclipboard(char *contents, long length)
**man-end**********************************************************************/
int PDC_CDECL PDC_freeclipboard(char *contents)
int PDC_freeclipboard(char *contents)
{
PDC_LOG(("PDC_freeclipboard() - called\n"));
@@ -130,7 +130,7 @@ int PDC_CDECL PDC_freeclipboard(char *contents)
**man-end**********************************************************************/
int PDC_CDECL PDC_clearclipboard(void)
int PDC_clearclipboard(void)
{
return XCurses_clearclipboard();
}

View File

@@ -29,7 +29,7 @@
#ifdef PDCDEBUG
const char *rcsid_sb =
"$Id: sb.c,v 1.11 2006/02/06 03:13:31 wmcbrine Exp $";
"$Id: sb.c,v 1.12 2006/02/08 17:41:13 wmcbrine Exp $";
#endif
/*man-start*********************************************************************
@@ -66,7 +66,7 @@ bool sb_started = FALSE;
/* sb_init() is the sb initialization routine.
This must be called before initscr(). */
int PDC_CDECL sb_init(void)
int sb_init(void)
{
PDC_LOG(("sb_init() - called\n"));
@@ -84,7 +84,7 @@ int PDC_CDECL sb_init(void)
viewport = size of viewport in columns
cur = current column in total */
int PDC_CDECL sb_set_horz(int total, int viewport, int cur)
int sb_set_horz(int total, int viewport, int cur)
{
PDC_LOG(("sb_set_horz() - called: total %d viewport %d cur %d\n",
total, viewport, cur));
@@ -105,7 +105,7 @@ int PDC_CDECL sb_set_horz(int total, int viewport, int cur)
viewport = size of viewport in columns
cur = current column in total */
int PDC_CDECL sb_set_vert(int total, int viewport, int cur)
int sb_set_vert(int total, int viewport, int cur)
{
PDC_LOG(("sb_set_vert() - called: total %d viewport %d cur %d\n",
total, viewport, cur));
@@ -126,7 +126,7 @@ int PDC_CDECL sb_set_vert(int total, int viewport, int cur)
viewport = size of viewport in lines
cur = current line in total */
int PDC_CDECL sb_get_horz(int *total, int *viewport, int *cur)
int sb_get_horz(int *total, int *viewport, int *cur)
{
PDC_LOG(("sb_get_horz() - called\n"));
@@ -149,7 +149,7 @@ int PDC_CDECL sb_get_horz(int *total, int *viewport, int *cur)
viewport = size of viewport in lines
cur = current line in total */
int PDC_CDECL sb_get_vert(int *total, int *viewport, int *cur)
int sb_get_vert(int *total, int *viewport, int *cur)
{
PDC_LOG(("sb_get_vert() - called\n"));
@@ -168,7 +168,7 @@ int PDC_CDECL sb_get_vert(int *total, int *viewport, int *cur)
/* sb_refresh() - Used to draw the scrollbars. */
int PDC_CDECL sb_refresh(void)
int sb_refresh(void)
{
PDC_LOG(("sb_refresh() - called\n"));