aboutsummaryrefslogtreecommitdiff
path: root/coreutils/uuencode.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-07-11 11:11:56 +0000
committerEric Andersen <andersen@codepoet.org>2002-07-11 11:11:56 +0000
commit2276d836398564a90f5ff237e63ca3104ae509f0 (patch)
treeb516e1554a434ba539ed5318c0b3736940c1dd99 /coreutils/uuencode.c
parentcafc10323099befd1e45bb1d212a511dcbb92b11 (diff)
downloadbusybox-2276d836398564a90f5ff237e63ca3104ae509f0.tar.gz
Fixup warnings and undefined operations that show up in gcc-3.1
-Erik
Diffstat (limited to 'coreutils/uuencode.c')
-rw-r--r--coreutils/uuencode.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c
index 24b9f1c6a..1d42494fd 100644
--- a/coreutils/uuencode.c
+++ b/coreutils/uuencode.c
@@ -21,6 +21,7 @@
*/
#include <getopt.h>
#include <stdio.h>
+#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
@@ -49,7 +50,7 @@ static char tbl_std[65] = {
'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
'X', 'Y', 'Z', '[', '\\', ']', '^', '_',
- '\`' /* termination character */
+ '`' /* termination character */
};
/*