diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-27 06:01:43 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-27 06:01:43 +0000 |
commit | ab050f5522e843bf08994685134adaaac7ffd392 (patch) | |
tree | e3f2fbeb43186bbe44fb58ba5a7f6a3c4843c1a5 /coreutils/uuencode.c | |
parent | 3654ca56fae6e3bdcb7369bc21d2b41d460ef732 (diff) | |
download | busybox-w32-ab050f5522e843bf08994685134adaaac7ffd392.tar.gz busybox-w32-ab050f5522e843bf08994685134adaaac7ffd392.tar.bz2 busybox-w32-ab050f5522e843bf08994685134adaaac7ffd392.zip |
Add in a patch to make busybox use the normal pwd.h and grp.h
functions. Add in simple implementations of these functions,
which can, optionally, be used instead of the system versions.
-Erik
Diffstat (limited to 'coreutils/uuencode.c')
-rw-r--r-- | coreutils/uuencode.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c index 36bc4970f..24aabd373 100644 --- a/coreutils/uuencode.c +++ b/coreutils/uuencode.c | |||
@@ -27,7 +27,6 @@ | |||
27 | #include <stdio.h> | 27 | #include <stdio.h> |
28 | #include <errno.h> | 28 | #include <errno.h> |
29 | #include <getopt.h> | 29 | #include <getopt.h> |
30 | #include <pwd.h> | ||
31 | 30 | ||
32 | #define RW (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH) | 31 | #define RW (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH) |
33 | 32 | ||