Change all the function definitions in ptclient to ANSI form
Reviewed-on: http://gerrit.openafs.org/32
Reviewed-by: Russ Allbery <rra@stanford.edu>
Verified-by: Russ Allbery <rra@stanford.edu>
#define GetXInt32(l) GetToken ("%x", l)
int
-GetString(s, slen)
- char *s;
- int slen;
+GetString(char *s, int slen)
{
char *beg;
int l;
}
int
-CodeOk(code)
- afs_int32 code;
+CodeOk(afs_int32 code)
{
if (!ignoreExist)
return code;
}
int
-PrintEntry(ea, e, indent)
- afs_int32 ea;
- struct prentry *e;
- int indent;
+PrintEntry(afs_int32 ea, struct prentry *e, int indent)
{
/* handle screwed up versions of DumpEntry */
if (e->flags & PRCONT) {
#include "AFS_component_version_number.c"
-main(argc, argv)
- int argc;
- char **argv;
+int
+main(int argc, char **argv)
{
register afs_int32 code;
char op[8];