Changeset 76e2113 for libcfa/src/stdhdr/malloc.h
- Timestamp:
- Apr 18, 2020, 9:08:12 AM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 692e6f1
- Parents:
- 899dfbb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/stdhdr/malloc.h
r899dfbb r76e2113 10 10 // Created On : Thu Jul 20 15:58:16 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Mar 8 10:01:20202013 // Update Count : 1 112 // Last Modified On : Thu Apr 16 22:44:06 2020 13 // Update Count : 13 14 14 // 15 15 … … 31 31 32 32 extern "C" { 33 void * aalloc( size_t noOfElems, size_t elemSize ); 34 void * amemalign( size_t alignment, size_t noOfElems, size_t elemSize ); 33 35 void * cmemalign( size_t alignment, size_t noOfElems, size_t elemSize ); 34 36 size_t malloc_alignment( void * ); 35 37 bool malloc_zero_fill( void * ); 36 size_t malloc_ dimension( void * );38 size_t malloc_size( void * ); 37 39 int malloc_stats_fd( int fd ); 38 40 } // extern "C"
Note: See TracChangeset
for help on using the changeset viewer.