mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
Fixed compiler warnings
svn path=/trunk/; revision=1074
This commit is contained in:
parent
5d99a8740a
commit
753cb16c91
5 changed files with 9 additions and 3 deletions
|
@ -2,6 +2,8 @@
|
|||
#include <crtdll/stdlib.h>
|
||||
#include <crtdll/float.h>
|
||||
|
||||
char *ecvtbuf (double, int, int *, int *, char *);
|
||||
|
||||
char *
|
||||
_ecvt (double value, int ndigits, int *decpt, int *sign)
|
||||
{
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
#include <crtdll/stdio.h>
|
||||
#include <crtdll/string.h>
|
||||
#include <crtdll/float.h>
|
||||
#include <crtdll/alloc.h>
|
||||
// #include <crtdll/locale.h>
|
||||
|
||||
void __ecvround (char *, char *, const char *, int *);
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
#include <crtdll/stdlib.h>
|
||||
#include <crtdll/float.h>
|
||||
|
||||
char *fcvtbuf (double, int, int *, int *, char *);
|
||||
|
||||
char *
|
||||
_fcvt (double value, int ndigits, int *decpt, int *sign)
|
||||
{
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
// #include <crtdll/locale.h>
|
||||
|
||||
void __ecvround (char *, char *, const char *, int *);
|
||||
char *ecvtbuf (double, int, int *, int *, char *);
|
||||
|
||||
char *
|
||||
fcvtbuf (double value, int ndigits, int *decpt, int *sign, char *buf)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: wait.c,v 1.10 2000/03/16 21:50:11 ekohl Exp $
|
||||
/* $Id: wait.c,v 1.11 2000/03/18 02:39:12 ekohl Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
|
@ -27,7 +27,7 @@ CreateSemaphoreA (
|
|||
HANDLE Handle;
|
||||
|
||||
RtlInitAnsiString (&Name,
|
||||
lpName);
|
||||
(LPSTR)lpName);
|
||||
RtlAnsiStringToUnicodeString (&NameU,
|
||||
&Name,
|
||||
TRUE);
|
||||
|
@ -104,7 +104,7 @@ CreateMutexA (
|
|||
HANDLE Handle;
|
||||
|
||||
RtlInitAnsiString (&Name,
|
||||
lpName);
|
||||
(LPSTR)lpName);
|
||||
RtlAnsiStringToUnicodeString (&NameU,
|
||||
&Name,
|
||||
TRUE);
|
||||
|
|
Loading…
Reference in a new issue