summaryrefslogtreecommitdiffstats
path: root/call/dostime.c
diff options
context:
space:
mode:
Diffstat (limited to 'call/dostime.c')
-rw-r--r--call/dostime.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/call/dostime.c b/call/dostime.c
index 4eb34c9..6e6e173 100644
--- a/call/dostime.c
+++ b/call/dostime.c
@@ -3,6 +3,8 @@
#include <stdlib.h>
#include <stdio.h>
+#include "call.h"
+
/* MS-DOS time/date conversion routines derived from: */
@@ -21,7 +23,7 @@ static int day_n[] =
/* Convert a MS-DOS time/date pair to a UNIX date (seconds since 1 1 70). */
-int date_dos2unix(unsigned short time, unsigned short date)
+static int date_dos2unix(unsigned short time, unsigned short date)
{
int month, year, secs;