/* AIX requires a buffer filled with values to record with each audit event.
* aixmakebuf creates that buffer from the variable list of values we are given.
* ************************************************************************** */
-static
-aixmakebuf(audEvent, vaList)
- char *audEvent;
- char *vaList;
+static void
+aixmakebuf(char *audEvent, char *vaList)
{
int code;
int vaEntry;
} /* end while */
}
-static
-printbuf(audEvent, errCode, vaList)
- char *audEvent;
- afs_int32 errCode;
- char *vaList;
+static void
+printbuf(char *audEvent, afs_int32 errCode, char *vaList)
{
int vaEntry;
int vaInt;
printf("\n");
}
#else
-static
+static void
aixmakebuf(audEvent, vaList)
char *audEvent;
va_list vaList;
return;
}
-static
-printbuf(audEvent, errCode, vaList)
- char *audEvent;
- long errCode;
- va_list vaList;
+static void
+printbuf(char *audEvent, long errCode, va_list vaList)
{
return;
}