diff options
author | Matt Kraai <kraai@debian.org> | 2001-05-18 14:14:55 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-05-18 14:14:55 +0000 |
commit | d6ef07406d217a728d334ae5e49c4734b4ed26f5 (patch) | |
tree | 61708f6aa1e598e454ff0be88793bf14d7833132 /libbb/libbb.h | |
parent | 69438154000344f0fc60b12c0d31b297c698b5f4 (diff) | |
download | busybox-w32-d6ef07406d217a728d334ae5e49c4734b4ed26f5.tar.gz busybox-w32-d6ef07406d217a728d334ae5e49c4734b4ed26f5.tar.bz2 busybox-w32-d6ef07406d217a728d334ae5e49c4734b4ed26f5.zip |
Rewrote copyfd to use library functions, terminate, and copy correct data.
Diffstat (limited to '')
-rw-r--r-- | libbb/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/libbb.h b/libbb/libbb.h index 29a756b7f..4e324bf86 100644 --- a/libbb/libbb.h +++ b/libbb/libbb.h | |||
@@ -133,7 +133,7 @@ extern pid_t* find_pid_by_name( char* pidName); | |||
133 | extern char *find_real_root_device_name(const char* name); | 133 | extern char *find_real_root_device_name(const char* name); |
134 | extern char *get_line_from_file(FILE *file); | 134 | extern char *get_line_from_file(FILE *file); |
135 | extern void print_file(FILE *file); | 135 | extern void print_file(FILE *file); |
136 | extern size_t copyfd(int fd1, int fd2); | 136 | extern int copyfd(int fd1, int fd2); |
137 | extern int print_file_by_name(char *filename); | 137 | extern int print_file_by_name(char *filename); |
138 | extern char process_escape_sequence(const char **ptr); | 138 | extern char process_escape_sequence(const char **ptr); |
139 | extern char *get_last_path_component(char *path); | 139 | extern char *get_last_path_component(char *path); |