diff options
author | Eric Andersen | 2001-06-01 21:47:15 +0000 |
---|---|---|
committer | Eric Andersen | 2001-06-01 21:47:15 +0000 |
commit | 8b113f93b9b9157ea1e013667eaaf00aed97a251 (patch) | |
tree | c833c8f3a72637660af61b061b90d69d987fed25 /libbb/libbb.h | |
parent | 4f6753e586dba5e6c240e670d41fc8fd011034e1 (diff) | |
download | busybox-8b113f93b9b9157ea1e013667eaaf00aed97a251.zip busybox-8b113f93b9b9157ea1e013667eaaf00aed97a251.tar.gz |
Vladimir's last_patch13, containing several bugfixes.
Diffstat (limited to 'libbb/libbb.h')
-rw-r--r-- | libbb/libbb.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libbb/libbb.h b/libbb/libbb.h index 4e324bf..31bd97f 100644 --- a/libbb/libbb.h +++ b/libbb/libbb.h @@ -92,16 +92,6 @@ const char *time_string(time_t timeVal); int is_directory(const char *name, int followLinks, struct stat *statBuf); int isDevice(const char *name); -typedef struct ino_dev_hash_bucket_struct { - struct ino_dev_hash_bucket_struct *next; - ino_t ino; - dev_t dev; - char name[1]; -} ino_dev_hashtable_bucket_t; -int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name); -void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name); -void reset_ino_dev_hashtable(void); - int remove_file(const char *path, int flags); int copy_file(const char *source, const char *dest, int flags); int copy_file_chunk(FILE *src_file, FILE *dst_file, unsigned long long chunksize); |