mirror of https://github.com/MidnightCommander/mc
* container.h: Remove, it's unused.
This commit is contained in:
parent
646e878d6b
commit
95ffa342bd
|
@ -1,5 +1,7 @@
|
||||||
2002-10-02 Pavel Roskin <proski@gnu.org>
|
2002-10-02 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
|
* container.h: Remove, it's unused.
|
||||||
|
|
||||||
* utilvfs.c: Remove tests, since get_host_and_username() is
|
* utilvfs.c: Remove tests, since get_host_and_username() is
|
||||||
missing.
|
missing.
|
||||||
* mcfs.c (open_tcp_link): Make static.
|
* mcfs.c (open_tcp_link): Make static.
|
||||||
|
|
|
@ -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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,6 @@
|
||||||
#include "xdirentry.h"
|
#include "xdirentry.h"
|
||||||
#include "vfs.h"
|
#include "vfs.h"
|
||||||
#include "tcputil.h"
|
#include "tcputil.h"
|
||||||
#include "container.h"
|
|
||||||
#include "fish.h"
|
#include "fish.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -76,7 +76,6 @@ What to do with this?
|
||||||
#include "tcputil.h"
|
#include "tcputil.h"
|
||||||
#include "../src/dialog.h"
|
#include "../src/dialog.h"
|
||||||
#include "../src/setup.h" /* for load_anon_passwd */
|
#include "../src/setup.h" /* for load_anon_passwd */
|
||||||
#include "container.h"
|
|
||||||
#include "ftpfs.h"
|
#include "ftpfs.h"
|
||||||
#ifndef MAXHOSTNAMELEN
|
#ifndef MAXHOSTNAMELEN
|
||||||
# define MAXHOSTNAMELEN 64
|
# define MAXHOSTNAMELEN 64
|
||||||
|
|
Loading…
Reference in New Issue