medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 92c62510e7171936e378388024fd176fcdd90776
parent b1f97aa0e3c7a63d789eb44a75f91c0b37295879
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sat Nov  5 12:23:27 +0200

array.h needs stdlib.h for size_t

Diffstat:
array.h | 2++
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/array.h b/array.h @@ -1,6 +1,8 @@ #ifndef _ARRAY_H_ #define _ARRAY_H_ +#include <stdlib.h> + #include "intrinsics.h" template< typename T >