components/stdcxx/patches/025-new.h.patch
changeset 402 94ae4d75524c
equal deleted inserted replaced
401:bf52ef48020c 402:94ae4d75524c
       
     1 --- stdcxx-4.2.1/include/new.h	2009-06-08 10:13:00.141832000 -0400
       
     2 +++ stdcxx-4.2.1/include/new.h	2007-05-03 05:51:01.000000000 -0400
       
     3 @@ -0,0 +1,19 @@
       
     4 +/*
       
     5 +        Copyright 06/08/98 Sun Microsystems, Inc. All Rights Reserved
       
     6 +*/
       
     7 +/* new.h
       
     8 +
       
     9 +   @(#)new.h	1.2  06/08/98 14:00:58
       
    10 +
       
    11 +   Compatibility declaration for ISO standard new interface
       
    12 +*/
       
    13 +
       
    14 +#ifndef _NEW_H_
       
    15 +#define _NEW_H_
       
    16 +
       
    17 +#include <new>
       
    18 +
       
    19 +using std::bad_alloc;
       
    20 +using std::set_new_handler;
       
    21 +
       
    22 +#endif