From b2c0a19ea342f57db88c30a4c7d6e2021bc2560b Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Wed, 4 Dec 2024 12:23:51 +0000 Subject: [PATCH] util: remove dead escaped dirent.h --- Applications/util/dirent.h | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 Applications/util/dirent.h diff --git a/Applications/util/dirent.h b/Applications/util/dirent.h deleted file mode 100644 index 2e4add5f97..0000000000 --- a/Applications/util/dirent.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef __DIRENT_H -#define __DIRENT_H - -#include "unix.h" - -#ifndef MAXNAMLEN -#define MAXNAMLEN 13 -#endif - -/* Directory stream type */ - -typedef struct { - int dd_fd; /* file descriptor */ - int dd_loc; /* offset in buffer */ - int dd_size; /* # of valid entries in buffer */ - struct direct dd_buf; /* directory entry buffer */ -} DIR; /* stream data from opendir() */ - -extern DIR *opendir(char *); -extern int closedir(DIR *); -extern struct direct *readdir(DIR *); - -#endif /* dirent.h */ -