mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 18:09:48 +00:00
Fix some IBM XL C/C++ issues
This commit is contained in:
parent
7f8d3e8882
commit
b3941a433d
@ -1,7 +1,6 @@
|
||||
#include <string>
|
||||
#include <cstdint>
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
uint32_t x=0;
|
||||
unsigned int x=0;
|
||||
return x;
|
||||
}
|
||||
|
@ -1,7 +1,6 @@
|
||||
#include <stdint.h>
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
uint32_t a, b, c, d;
|
||||
unsigned int a, b, c, d;
|
||||
asm volatile ( "cpuid" : "+a"(a), "=b"(b), "+c"(c), "=d"(d) );
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user