summaryrefslogtreecommitdiff
path: root/xts5/src/libproto/ShowSup.c
diff options
context:
space:
mode:
Diffstat (limited to 'xts5/src/libproto/ShowSup.c')
-rw-r--r--xts5/src/libproto/ShowSup.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/xts5/src/libproto/ShowSup.c b/xts5/src/libproto/ShowSup.c
index 01941220..08686504 100644
--- a/xts5/src/libproto/ShowSup.c
+++ b/xts5/src/libproto/ShowSup.c
@@ -160,6 +160,7 @@ static char scratchbuf[PRTBUFSIZ]; /* ? */
*/
+int
Show_Value_List_Req (rp, size, format)
xReq * rp;
int size;
@@ -288,6 +289,8 @@ int format;
default:
DEFAULT_ERROR;
}
+
+ return 0;
}
@@ -321,6 +324,7 @@ int format;
*/
+int
Show_Value_List_Rep (rp, size, format)
xReply *rp;
int size;
@@ -462,6 +466,8 @@ int format;
default:
DEFAULT_ERROR;
}
+
+ return 0;
}
@@ -480,6 +486,7 @@ int format;
it's done now, since it's a little silly.
*/
+int
Show_String8 (rp, size, length)
xReq * rp;
int size;
@@ -496,6 +503,8 @@ int length;
valuePtr++;
}
Log_Some("\"\n");
+
+ return 0;
}
/*
@@ -568,6 +577,7 @@ char *label;
methods: Bytes per item is implicit in FORMAT type.
*/
+int
Show_Value_List_nRep (rp, nval, size, format)
xReply *rp;
int nval;
@@ -613,4 +623,5 @@ int format;
DEFAULT_ERROR;
}
}
+ return 0;
}