* container.h: Remove, it's unused.

This commit is contained in:
Pavel Roskin 2002-10-01 03:54:05 +00:00
parent 646e878d6b
commit 95ffa342bd
4 changed files with 2 additions and 34 deletions

View File

@ -1,5 +1,7 @@
2002-10-02 Pavel Roskin <proski@gnu.org>
* container.h: Remove, it's unused.
* utilvfs.c: Remove tests, since get_host_and_username() is
missing.
* mcfs.c (open_tcp_link): Make static.

View File

@ -1,32 +0,0 @@
/* linklist.h */
#if !defined(__LINKLIST_H)
#define __LINKLIST_H
struct linklist {
void *data;
struct linklist *next;
struct linklist *prev;
};
struct LRU_list {
struct LRU_list *prev;
struct LRU_list *next;
void *data;
};
struct list_iterator {
struct linklist *linklist;
struct linklist *current_pos;
};
struct linklist *linklist_init(void);
void linklist_destroy(struct linklist *, void (*destructor) (void *));
int linklist_insert(struct linklist *, void *);
int linklist_delete(struct linklist *, void *);
void linklist_delete_all(struct linklist *, void (*) (void *));
#endif

View File

@ -44,7 +44,6 @@
#include "xdirentry.h"
#include "vfs.h"
#include "tcputil.h"
#include "container.h"
#include "fish.h"
/*

View File

@ -76,7 +76,6 @@ What to do with this?
#include "tcputil.h"
#include "../src/dialog.h"
#include "../src/setup.h" /* for load_anon_passwd */
#include "container.h"
#include "ftpfs.h"
#ifndef MAXHOSTNAMELEN
# define MAXHOSTNAMELEN 64