comparison DynArray.c @ 24:3e8e1a2a10f5

changed comments, to avoid repeats during global replace
author Some Random Person <seanhalle@yahoo.com>
date Fri, 09 Mar 2012 22:18:27 -0800
parents ef65bdf3ce16
children 4f386058d46c ba7abed0873c e6b21c2350d1
comparison
equal deleted inserted replaced
13:1f61714b7b72 16:4c37d1f02465
149 info->sizeOfArray = newSize; 149 info->sizeOfArray = newSize;
150 150
151 VMS_int__free( oldArray ); 151 VMS_int__free( oldArray );
152 } 152 }
153 153
154 /*Can't mix VMS__malloc locations with external malloc locations -- so use 154 /*Can't mix VMS_int__malloc locations with external malloc locations -- so use
155 * this version inside VMS, which will perform normal malloc in the core 155 * this version inside VMS, which will perform normal malloc in the core
156 * loop -- hopefully avoiding the annoying system-stack bugs.. 156 * loop -- hopefully avoiding the annoying system-stack bugs..
157 */ 157 */
158 void 158 void
159 increaseSizeOfDynArrayTo_Ext( PrivDynArrayInfo *info, int32 newSize ) 159 increaseSizeOfDynArrayTo_Ext( PrivDynArrayInfo *info, int32 newSize )