comparison DynArray.h @ 25:7adf81960d10

More progress towards getting common_ancestor working
author Some Random Person <seanhalle@yahoo.com>
date Tue, 13 Mar 2012 18:31:05 -0700
parents 3e8e1a2a10f5
children 6d4e6529335e e6b21c2350d1
comparison
equal deleted inserted replaced
11:c1817b7c1082 12:cab98e8e5928
7 7
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/vmalloc.h" 12 #include "VMS_impl/Services_Offered_by_VMS/Memory_Handling/vmalloc.h"
13 13
14 14
15 //A dynamic array is same as any other array, but add a DynArrayInfo next 15 //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 16 // 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. 17 // only when add a new element into array that use the extra info.