comparison DynArray.h @ 27:4f386058d46c

added include of malloc.h
author Sean Halle <seanhalle@yahoo.com>
date Mon, 10 Sep 2012 01:08:42 -0700
parents 7adf81960d10
children
comparison
equal deleted inserted replaced
12:cab98e8e5928 13:e2897c6ae4df
8 #ifndef _DYNARRAY_H 8 #ifndef _DYNARRAY_H
9 #define _DYNARRAY_H 9 #define _DYNARRAY_H
10 10
11 #include "VMS_impl/VMS_primitive_data_types.h" 11 #include "VMS_impl/VMS_primitive_data_types.h"
12 #include "VMS_impl/Services_Offered_by_VMS/Memory_Handling/vmalloc.h" 12 #include "VMS_impl/Services_Offered_by_VMS/Memory_Handling/vmalloc.h"
13
13 14
14 15
15 //A dynamic array is same as any other array, but add a DynArrayInfo next 16 //A dynamic array is same as any other array, but add a DynArrayInfo next
16 // to it. Accesses and updates of array indexes are done normally, it's 17 // to it. Accesses and updates of array indexes are done normally, it's
17 // only when add a new element into array that use the extra info. 18 // only when add a new element into array that use the extra info.