comparison DynArray.h @ 17:62b3a4793b6e

chgd files to VMS__malloc and correct includes
author Me@portablequad
date Sat, 11 Feb 2012 19:00:21 -0800
parents 9de0a9369134
children 3e8e1a2a10f5
comparison
equal deleted inserted replaced
7:c1c97360d625 9:a36337bc2886
5 * Created on May 14, 2010, 3:08 PM 5 * Created on May 14, 2010, 3:08 PM
6 */ 6 */
7 7
8 #ifndef _DYNARRAY_H 8 #ifndef _DYNARRAY_H
9 #define _DYNARRAY_H 9 #define _DYNARRAY_H
10
11 #include "../../VMS_Implementations/VMS_impl/VMS_primitive_data_types.h"
12 #include "../../VMS_Implementations/VMS_impl/vmalloc.h"
10 13
11 14
12 //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
13 // 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
14 // 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.