directory: moved dirvec struct declaration to dirvec.h

No idea why it was created in directory.h, but it should be in
dirvec.h.
This commit is contained in:
Max Kellermann
2008-10-09 15:24:05 +02:00
parent a0c044df11
commit 68f716a28b
6 changed files with 7 additions and 10 deletions

View File

@@ -1,7 +1,12 @@
#ifndef DIRVEC_H
#define DIRVEC_H
struct dirvec;
#include <stddef.h>
struct dirvec {
struct directory **base;
size_t nr;
};
void dirvec_sort(struct dirvec *dv);