diff options
Diffstat (limited to '')
-rw-r--r-- | timevaltostr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/timevaltostr.c b/timevaltostr.c index d8610b3..4dd6b9c 100644 --- a/timevaltostr.c +++ b/timevaltostr.c @@ -3,7 +3,7 @@ char * -libsimple_timevaltostr(char *restrict buf, const struct timeval *restrict tv) +libsimple_timevaltostr(char *restrict buf, const struct timeval *restrict tv) /* TODO test */ { time_t s = tv->tv_sec; long int us = tv->tv_usec; |