2010-01-15 Philippe Dunski <koala01@free.fr>

* crt/stdlib.h (rand_s): New prototype.



git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@1743 4407c894-4637-0410-b4f5-ada5f102cad1
This commit is contained in:
Kai Tietz 2010-01-15 17:53:15 +00:00
parent 396817c968
commit 735984078a
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2010-01-15 Philippe Dunski <koala01@free.fr>
* crt/stdlib.h (rand_s): New prototype.
2010-01-15 Kai Tietz <kai.tietz@onevision.com>
* COPYING: Change license to ZPL 2.1.

View File

@ -375,6 +375,9 @@ extern "C" {
int __cdecl rand(void);
_CRTIMP int __cdecl _set_error_mode(int _Mode);
void __cdecl srand(unsigned int _Seed);
#ifdef _CRT_RAND_S
_CRTIMP errno_t __cdecl rand_s(unsigned int *randomValue);
#endif
double __cdecl strtod(const char *_Str,char **_EndPtr);
float __cdecl strtof(const char *nptr, char **endptr);
long double __cdecl strtold(const char *, char **);