diff options
Diffstat (limited to 'coreutils/uuencode.c')
| -rw-r--r-- | coreutils/uuencode.c | 3 |
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 @@ | |||
| 21 | */ | 21 | */ |
| 22 | #include <getopt.h> | 22 | #include <getopt.h> |
| 23 | #include <stdio.h> | 23 | #include <stdio.h> |
| 24 | #include <string.h> | ||
| 24 | #include <stdlib.h> | 25 | #include <stdlib.h> |
| 25 | #include <sys/types.h> | 26 | #include <sys/types.h> |
| 26 | #include <sys/stat.h> | 27 | #include <sys/stat.h> |
| @@ -49,7 +50,7 @@ static char tbl_std[65] = { | |||
| 49 | 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', | 50 | 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', |
| 50 | 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', | 51 | 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', |
| 51 | 'X', 'Y', 'Z', '[', '\\', ']', '^', '_', | 52 | 'X', 'Y', 'Z', '[', '\\', ']', '^', '_', |
| 52 | '\`' /* termination character */ | 53 | '`' /* termination character */ |
| 53 | }; | 54 | }; |
| 54 | 55 | ||
| 55 | /* | 56 | /* |
