# HG changeset patch # User Some Random Person # Date 1331360307 28800 # Node ID 3e8e1a2a10f5800ed49ba31abee70482026c0bfc # Parent 09c78e99d6c9b4c2c12d422a6fa08264a42edabe changed comments, to avoid repeats during global replace diff -r 09c78e99d6c9 -r 3e8e1a2a10f5 DynArray.c --- a/DynArray.c Mon Feb 13 09:58:50 2012 -0800 +++ b/DynArray.c Fri Mar 09 22:18:27 2012 -0800 @@ -151,7 +151,7 @@ VMS_int__free( oldArray ); } -/*Can't mix VMS__malloc locations with external malloc locations -- so use +/*Can't mix VMS_int__malloc locations with external malloc locations -- so use * this version inside VMS, which will perform normal malloc in the core * loop -- hopefully avoiding the annoying system-stack bugs.. */ diff -r 09c78e99d6c9 -r 3e8e1a2a10f5 DynArray.h --- a/DynArray.h Mon Feb 13 09:58:50 2012 -0800 +++ b/DynArray.h Fri Mar 09 22:18:27 2012 -0800 @@ -8,8 +8,8 @@ #ifndef _DYNARRAY_H #define _DYNARRAY_H -#include "../../VMS_Implementations/VMS_impl/VMS_primitive_data_types.h" -#include "../../VMS_Implementations/VMS_impl/vmalloc.h" +#include "VMS_impl/VMS_primitive_data_types.h" +#include "VMS_impl/vmalloc.h" //A dynamic array is same as any other array, but add a DynArrayInfo next