summaryrefslogtreecommitdiff
path: root/w32/include/dirent.h
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2013-11-27 19:43:33 -0500
committerPaul Smith <psmith@gnu.org>2013-11-27 19:43:33 -0500
commita4937bc897320563091a77087baf1cdbe52885ab (patch)
treecc7c96dd97d757bf5bc63b91755af897b4361a32 /w32/include/dirent.h
parent889303cdfe968d6320fb92a8a617a4096076fece (diff)
downloadgunmake-a4937bc897320563091a77087baf1cdbe52885ab.tar.gz
* w32/*: Remove TABs from the source code.
I know whitespace commits are annoying, but having these TABs is causing me to miss things when I search through the code. This doesn't try to change the w32 code to meet GNU coding standards.
Diffstat (limited to 'w32/include/dirent.h')
-rw-r--r--w32/include/dirent.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/w32/include/dirent.h b/w32/include/dirent.h
index e75a1b1..16f81f7 100644
--- a/w32/include/dirent.h
+++ b/w32/include/dirent.h
@@ -36,16 +36,16 @@ this program. If not, see <http://www.gnu.org/licenses/>. */
struct dirent
{
- ino_t d_ino; /* unused - no equivalent on WINDOWS32 */
+ ino_t d_ino; /* unused - no equivalent on WINDOWS32 */
char d_name[NAME_MAX+1];
};
typedef struct dir_struct {
- ULONG dir_ulCookie;
- HANDLE dir_hDirHandle;
- DWORD dir_nNumFiles;
- char dir_pDirectoryName[NAME_MAX+1];
- struct dirent dir_sdReturn;
+ ULONG dir_ulCookie;
+ HANDLE dir_hDirHandle;
+ DWORD dir_nNumFiles;
+ char dir_pDirectoryName[NAME_MAX+1];
+ struct dirent dir_sdReturn;
} DIR;
DIR *opendir(const char *);