summaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-11-20 00:15:27 +0000
committerEric Andersen <andersen@codepoet.org>2001-11-20 00:15:27 +0000
commitc36642195cb97c1a632b85d4f473058f1409aaed (patch)
tree50d4d2acbf50d3533981b9c8a0ee9b18905dba19 /miscutils
parentedc6e0248c70fbd7d5eebb97463ac366b2c66092 (diff)
downloadbusybox-w32-c36642195cb97c1a632b85d4f473058f1409aaed.tar.gz
busybox-w32-c36642195cb97c1a632b85d4f473058f1409aaed.tar.bz2
busybox-w32-c36642195cb97c1a632b85d4f473058f1409aaed.zip
Include time.h
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/dutmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/dutmp.c b/miscutils/dutmp.c
index df7f64d30..cce260ca4 100644
--- a/miscutils/dutmp.c
+++ b/miscutils/dutmp.c
@@ -14,11 +14,11 @@
14 14
15#include <sys/types.h> 15#include <sys/types.h>
16#include <fcntl.h> 16#include <fcntl.h>
17
18#include <errno.h> 17#include <errno.h>
19#include <utmp.h> 18#include <utmp.h>
20#include <stdlib.h> 19#include <stdlib.h>
21#include <unistd.h> 20#include <unistd.h>
21#include <time.h>
22#include "busybox.h" 22#include "busybox.h"
23 23
24extern int dutmp_main(int argc, char **argv) 24extern int dutmp_main(int argc, char **argv)