You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
370 B

#pragma GCC system_header
// This header file pretends to be <new> from the system library, for the
// purpose of the over-aligned warnings test.
void* operator new(unsigned long) {
return 0;
}
void* operator new[](unsigned long) {
return 0;
}
void* operator new(unsigned long, void *) {
return 0;
}
void* operator new[](unsigned long, void *) {
return 0;
}