From: benny@crocodial.de (Benjamin Riefenstahl)
Subject: Re: gcc and cross-compilers
29 Apr 1998 11:46:28 -0700
Message-ID: <3546F066.4CE3FCB7.cygnus.gnu-win32@crocodial.de>
References: <199804281144.OAA14215@freenet.hut.fi>
Mime-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
To: gnu-win32@cygnus.com

Hi Kai,


Kai Ruottu wrote:
> ... All but the mkdir() seems
> Ok for me. But is it really true that mkdir() is like the one in Borland C
> (only one parameter), and not like the UNIX-standard 'int mkdir(const char *,
> mode_t)' ?

It's the other way 'round, I believe. Borland imitated MS in leaving out
the permissions parameter (which wasn't used at the time, because DOS
doesn't have permissions for directories).

The mingw32 headers could possibly add a macro like

  extern int mkdir( const char * dirname );
  #define mkdir(name,perm) mkdir(name)

to make this more Unix-compatible.


so long, benny
======================================
Benjamin Riefenstahl (benny@crocodial.de)
Crocodial Communications EntwicklungsGmbH
Ruhrstraße 61, D-22761 Hamburg, Germany
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".
