mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 04:23:32 +00:00
[CMAKE]
sync with trunk (r49230) svn path=/branches/cmake-bringup/; revision=49246
This commit is contained in:
commit
1fb94b1cb5
771 changed files with 118975 additions and 68781 deletions
11
lib/sdk/crt/math/powf.c
Normal file
11
lib/sdk/crt/math/powf.c
Normal file
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* This file has no copyright assigned and is placed in the Public Domain.
|
||||
* This file is part of the w64 mingw-runtime package.
|
||||
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
|
||||
*/
|
||||
#include <math.h>
|
||||
|
||||
float powf(float x, float y)
|
||||
{
|
||||
return (float)pow((double)x, (double)y);
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
#include <stdarg.h>
|
||||
|
||||
#define COM_NO_WINDOWS_H
|
||||
#include "windef.h"
|
||||
#include "initguid.h"
|
||||
|
||||
#include <ioevent.h>
|
||||
|
|
|
@ -10,5 +10,9 @@
|
|||
/* FIXME: shouldn't go there! */
|
||||
DEFINE_GUID(GUID_DEVICE_SYS_BUTTON,
|
||||
0x4AFA3D53L, 0x74A7, 0x11d0, 0xbe, 0x5e, 0x00, 0xA0, 0xC9, 0x06, 0x28, 0x57);
|
||||
DEFINE_GUID(GUID_DEVINTERFACE_DISK,
|
||||
0x53f56307L, 0xb6bf, 0x11d0, 0x94, 0xf2, 0x00, 0xa0, 0xc9, 0x1e, 0xfb, 0x8b);
|
||||
DEFINE_GUID(GUID_DEVINTERFACE_CDROM,
|
||||
0x53f56308L, 0xb6bf, 0x11d0, 0x94, 0xf2, 0x00, 0xa0, 0xc9, 0x1e, 0xfb, 0x8b);
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue