Date: Sun, 22 Mar 1998 15:25:20 +0300 (IDT) From: Eli Zaretskii To: Nate Eldredge cc: Martin Stromberg , DJGPP-WORKERS Subject: Re: Where to get the latest sources for djtar In-Reply-To: <199803200149.RAA14455@adit.ap.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Thu, 19 Mar 1998, Nate Eldredge wrote: > Also, `mkdir' isn't ANSI, is it? Because if so that makes a > namespace conflict. `mkdir' is a stub; the real function is `__mkdir', and `mkdir' only jmp's to `__mkdir'. Since `__mkdir' is used in ANSI functions, `statfs' cannot be called from `__mkdir'. In fact, since `statfs' is not even Posix, it cannot be called from `mkdir' as well without renaming it to `__statfs' or something.