From a95fa3cae0e63dd7d3bbe8672a81a0ffd5c4de67 Mon Sep 17 00:00:00 2001 From: andersen Date: Fri, 1 Jun 2001 21:47:15 +0000 Subject: Vladimir's last_patch13, containing several bugfixes. git-svn-id: svn://busybox.net/trunk/busybox@2779 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- include/libbb.h | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'include') diff --git a/include/libbb.h b/include/libbb.h index 4e324bf86..31bd97f2e 100644 --- a/include/libbb.h +++ b/include/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); -- cgit v1.2.3-55-g6feb