Re: [Mingw-w64-public] why aren't "secure" _s functions provided?

2011-03-09 Thread Dongsheng Song
On Thu, Mar 10, 2011 at 09:07, Dock, Dion wrote: > How did you do that? nm isn't displaying those functions in my preferred > runtime lib, libmsvcr80.a. For example, > C:\Temp>C:\mingw_32\bin\i686-w64-mingw32-nm.exe > C:\mingw_32\mingw\lib\libmsvcr80.a | find "strcpy_s" > C:\Temp> > You ca

Re: [Mingw-w64-public] why aren't "secure" _s functions provided?

2011-03-09 Thread Dock, Dion
> From: Dongsheng Song [mailto:dongsheng.s...@gmail.com] > Sent: Tuesday, March 08, 2011 5:56 PM > To: Dock, Dion > Cc: mingw-w64-public@lists.sourceforge.net > Subject: Re: [Mingw-w64-public] why aren't "secure" _s functions provided? > > On Wed, Mar 9, 2011 at 03:32, Dock, Dion wrote: > > I'm b

Re: [Mingw-w64-public] Issue with complex.h

2011-03-09 Thread Ozkan Sezer
On Wed, Mar 9, 2011 at 2:08 PM, Sisyphus wrote: > Hi, > > On Windows Vista 64, the demo program: > > # > C:\_64\c>type try.c > #include > #include > > int main(void) { >     double _Complex rop, op, power; > >     __real__ op = 3.0; >     __imag__ op = 0.0; >

[Mingw-w64-public] Issue with complex.h

2011-03-09 Thread Sisyphus
Hi, On Windows Vista 64, the demo program: # C:\_64\c>type try.c #include #include int main(void) { double _Complex rop, op, power; __real__ op = 3.0; __imag__ op = 0.0; __real__ power = 2.0; __imag__ power = 0.0; rop = cpow(