diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-10-22 20:08:51 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-10-22 20:08:51 +0000 |
commit | 0e39949080e6dc1c4fa8233185df6814b1e1be5c (patch) | |
tree | 8f7f7b07b83d86368295dda46e91f9b1446017a7 /miscutils/crontab.c | |
parent | 0b79b559e5977e53d1460a0dde08331a7257e6ae (diff) | |
download | busybox-w32-0e39949080e6dc1c4fa8233185df6814b1e1be5c.tar.gz busybox-w32-0e39949080e6dc1c4fa8233185df6814b1e1be5c.tar.bz2 busybox-w32-0e39949080e6dc1c4fa8233185df6814b1e1be5c.zip |
mjn3 noticed that crond and crontab had #include <pwd.h> and #include <grp.h>
but this conflicted with the internal pwd_.h and grp_.h. Removing these
headers is correct, since the correct pwd/grp headers will be included via
busybox.h
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@5691 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'miscutils/crontab.c')
-rw-r--r-- | miscutils/crontab.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/miscutils/crontab.c b/miscutils/crontab.c index c86990653..4263d48dd 100644 --- a/miscutils/crontab.c +++ b/miscutils/crontab.c | |||
@@ -18,9 +18,7 @@ | |||
18 | #include <time.h> | 18 | #include <time.h> |
19 | #include <dirent.h> | 19 | #include <dirent.h> |
20 | #include <fcntl.h> | 20 | #include <fcntl.h> |
21 | #include <pwd.h> | ||
22 | #include <unistd.h> | 21 | #include <unistd.h> |
23 | #include <grp.h> | ||
24 | #include <syslog.h> | 22 | #include <syslog.h> |
25 | #include <signal.h> | 23 | #include <signal.h> |
26 | #include <getopt.h> | 24 | #include <getopt.h> |