+Tue Mar 12 23:46:26 1996 Ken Raeburn <raeburn@cygnus.com>
+
+ * gss-server.c (timeval_subtract): Use old-style function
+ definition.
+
Sun Mar 3 12:14:48 1996 Ezra Peisach <epeisach@kangaroo.mit.edu>
* gss-server.c (test_import_export_context): Add second argument
return 0;
}
-static float timeval_subtract(struct timeval *tv1,
- struct timeval *tv2)
+static float timeval_subtract(tv1, tv2)
+ struct timeval *tv1, *tv2;
{
return ((tv1->tv_sec - tv2->tv_sec) +
((float) (tv1->tv_usec - tv2->tv_usec)) / 1000000);