Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/stdlib

    rbb82c03 r627f585  
    1313// Update Count     : 99
    1414//
    15 
    16 #ifndef STDLIB_H
    17 #define STDLIB_H
    1815
    1916//---------------------------------------
     
    4744void free( void * ptr );
    4845} // extern "C"
     46
     47forall( otype T, ttype Params | { void ?{}(T *, Params); } ) T * new( Params p );
     48forall( dtype T | { void ^?{}(T *); } ) void delete( T * ptr );
     49
    4950
    5051//---------------------------------------
     
    130131void swap( T * t1, T * t2 );
    131132
    132 #endif // STDLIB_H
    133 
    134133// Local Variables: //
    135134// mode: c //
Note: See TracChangeset for help on using the changeset viewer.