Changes in src/libcfa/stdlib [bb82c03:627f585]
- File:
-
- 1 edited
-
src/libcfa/stdlib (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/stdlib
rbb82c03 r627f585 13 13 // Update Count : 99 14 14 // 15 16 #ifndef STDLIB_H17 #define STDLIB_H18 15 19 16 //--------------------------------------- … … 47 44 void free( void * ptr ); 48 45 } // extern "C" 46 47 forall( otype T, ttype Params | { void ?{}(T *, Params); } ) T * new( Params p ); 48 forall( dtype T | { void ^?{}(T *); } ) void delete( T * ptr ); 49 49 50 50 51 //--------------------------------------- … … 130 131 void swap( T * t1, T * t2 ); 131 132 132 #endif // STDLIB_H133 134 133 // Local Variables: // 135 134 // mode: c //
Note:
See TracChangeset
for help on using the changeset viewer.