mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
More _CRTIMP love for non-ANSI symbols
svn path=/trunk/; revision=44102
This commit is contained in:
parent
844a591298
commit
42f5d69bb4
2 changed files with 10 additions and 10 deletions
|
@ -526,15 +526,15 @@ extern "C" {
|
|||
#define sys_errlist _sys_errlist
|
||||
#define sys_nerr _sys_nerr
|
||||
#define environ _environ
|
||||
char *__cdecl ecvt(double _Val,int _NumOfDigits,int *_PtDec,int *_PtSign);
|
||||
char *__cdecl fcvt(double _Val,int _NumOfDec,int *_PtDec,int *_PtSign);
|
||||
char *__cdecl gcvt(double _Val,int _NumOfDigits,char *_DstBuf);
|
||||
char *__cdecl itoa(int _Val,char *_DstBuf,int _Radix);
|
||||
char *__cdecl ltoa(long _Val,char *_DstBuf,int _Radix);
|
||||
int __cdecl putenv(const char *_EnvString);
|
||||
void __cdecl swab(char *_Buf1,char *_Buf2,int _SizeInBytes);
|
||||
char *__cdecl ultoa(unsigned long _Val,char *_Dstbuf,int _Radix);
|
||||
onexit_t __cdecl onexit(onexit_t _Func);
|
||||
_CRTIMP char *__cdecl ecvt(double _Val,int _NumOfDigits,int *_PtDec,int *_PtSign);
|
||||
_CRTIMP char *__cdecl fcvt(double _Val,int _NumOfDec,int *_PtDec,int *_PtSign);
|
||||
_CRTIMP char *__cdecl gcvt(double _Val,int _NumOfDigits,char *_DstBuf);
|
||||
_CRTIMP char *__cdecl itoa(int _Val,char *_DstBuf,int _Radix);
|
||||
_CRTIMP char *__cdecl ltoa(long _Val,char *_DstBuf,int _Radix);
|
||||
_CRTIMP int __cdecl putenv(const char *_EnvString);
|
||||
_CRTIMP void __cdecl swab(char *_Buf1,char *_Buf2,int _SizeInBytes);
|
||||
_CRTIMP char *__cdecl ultoa(unsigned long _Val,char *_Dstbuf,int _Radix);
|
||||
_CRTIMP onexit_t __cdecl onexit(onexit_t _Func);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
|
|
@ -122,7 +122,7 @@ extern "C" {
|
|||
_CRTIMP int __cdecl __iswcsym(wint_t);
|
||||
int __cdecl is_wctype(wint_t,wctype_t);
|
||||
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || !defined (NO_OLDNAMES)
|
||||
int __cdecl iswblank(wint_t _C);
|
||||
_CRTIMP int __cdecl iswblank(wint_t _C);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue