comparison DynArray.h @ 30:e6b21c2350d1

Renamed VMS to PR, in new branch
author Sean Halle <seanhalle@yahoo.com>
date Mon, 03 Sep 2012 15:02:35 -0700
parents 7adf81960d10
children 958dcb7754ca
comparison
equal deleted inserted replaced
12:cab98e8e5928 14:48eb625d3226
6 */ 6 */
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 "PR_impl/PR_primitive_data_types.h"
12 #include "VMS_impl/Services_Offered_by_VMS/Memory_Handling/vmalloc.h" 12 #include "PR_impl/Services_Offered_by_PR/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.