mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@157 f3766cd6-281f-0410-b1cd-43a5c92072e9
16 lines
229 B
C++
16 lines
229 B
C++
// Common/NewHandler.h
|
|
|
|
#ifndef __COMMON_NEWHANDLER_H
|
|
#define __COMMON_NEWHANDLER_H
|
|
|
|
class CNewException {};
|
|
|
|
#ifdef _WIN32
|
|
void
|
|
#ifdef _MSC_VER
|
|
__cdecl
|
|
#endif
|
|
operator delete(void *p) throw();
|
|
#endif
|
|
|
|
#endif
|