summaryrefslogtreecommitdiffstats
path: root/crypto/heimdal/lib/roken/timeval.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/heimdal/lib/roken/timeval.c')
-rw-r--r--crypto/heimdal/lib/roken/timeval.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/heimdal/lib/roken/timeval.c b/crypto/heimdal/lib/roken/timeval.c
index ea4dee8..b72e202 100644
--- a/crypto/heimdal/lib/roken/timeval.c
+++ b/crypto/heimdal/lib/roken/timeval.c
@@ -37,7 +37,7 @@
#ifdef HAVE_CONFIG_H
#include <config.h>
-RCSID("$Id: timeval.c,v 1.1 2000/03/03 09:02:42 assar Exp $");
+RCSID("$Id: timeval.c 14773 2005-04-12 11:29:18Z lha $");
#endif
#include "roken.h"
@@ -46,7 +46,7 @@ RCSID("$Id: timeval.c,v 1.1 2000/03/03 09:02:42 assar Exp $");
* Make `t1' consistent.
*/
-void
+void ROKEN_LIB_FUNCTION
timevalfix(struct timeval *t1)
{
if (t1->tv_usec < 0) {
@@ -63,7 +63,7 @@ timevalfix(struct timeval *t1)
* t1 += t2
*/
-void
+void ROKEN_LIB_FUNCTION
timevaladd(struct timeval *t1, const struct timeval *t2)
{
t1->tv_sec += t2->tv_sec;
@@ -75,7 +75,7 @@ timevaladd(struct timeval *t1, const struct timeval *t2)
* t1 -= t2
*/
-void
+void ROKEN_LIB_FUNCTION
timevalsub(struct timeval *t1, const struct timeval *t2)
{
t1->tv_sec -= t2->tv_sec;
OpenPOWER on IntegriCloud