RE: Feature Branch Windows Build - lib/dup-safer.c & dup

2005-05-26 Thread Conrad T. Pino
Hi Derek, > From: Derek Price > > >The "dup" function call in "lib/dup-safer.c" has no > >prototype included. Windows Visual C 6.0 does NOT > >implement "dup" but does implement "_dup" as: > > > > int _dup( int handle ); > > > >I've added "#define dup _dup" to "config.h" chain > >but Microsoft pr

Re: Feature Branch Windows Build - lib/dup-safer.c & dup

2005-05-25 Thread Derek Price
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Conrad T. Pino wrote: >Hi All, > >The "dup" function call in "lib/dup-safer.c" has no >prototype included. Windows Visual C 6.0 does NOT >implement "dup" but does implement "_dup" as: > > int _dup( int handle ); > >I've added "#define dup _dup" to "co

Feature Branch Windows Build - lib/dup-safer.c & dup

2005-05-25 Thread Conrad T. Pino
Hi All, The "dup" function call in "lib/dup-safer.c" has no prototype included. Windows Visual C 6.0 does NOT implement "dup" but does implement "_dup" as: int _dup( int handle ); I've added "#define dup _dup" to "config.h" chain but Microsoft provides the prototype in "" which is NOT r