From 321ea016897ec8c302b1ca4857a460c6636f5490 Mon Sep 17 00:00:00 2001 From: erg Date: Mon, 8 Jan 2007 19:58:39 +0000 Subject: [PATCH] Fix dotty.c to use struct stat rather than the undocumented struct _stat. --- cmd/dotty/mswin32/dotty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/dotty/mswin32/dotty.c b/cmd/dotty/mswin32/dotty.c index 91b3d5908..b347a426e 100644 --- a/cmd/dotty/mswin32/dotty.c +++ b/cmd/dotty/mswin32/dotty.c @@ -86,7 +86,7 @@ static char pathbuf[1024]; static char commandbuf[1024]; static char *buildpath (char *file) { - struct _stat statbuf; + struct stat statbuf; char *s1, *s2; int mode, pathi; -- 2.40.0