mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-16 01:20:04 -04:00
20 lines
370 B
C
20 lines
370 B
C
#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;
|
|
}
|