diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-04-27 11:32:34 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-04-27 11:32:34 -0400 |
commit | d70e95a6ef8b74620b9bca76d2728b351a453674 (patch) | |
tree | 1a8708e6e5278212e6dc45d4952ab417414fbefa /tests/libdimension | |
parent | 7ad154ff068b0905116cf8dd3ad019bee092d696 (diff) | |
download | dimension-d70e95a6ef8b74620b9bca76d2728b351a453674.tar.xz |
Fix some includes.
Diffstat (limited to 'tests/libdimension')
-rw-r--r-- | tests/libdimension/cxx.cpp | 1 | ||||
-rw-r--r-- | tests/libdimension/tests.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/libdimension/cxx.cpp b/tests/libdimension/cxx.cpp index 50df178..f38831a 100644 --- a/tests/libdimension/cxx.cpp +++ b/tests/libdimension/cxx.cpp @@ -18,6 +18,7 @@ *************************************************************************/ #include "tests.h" +#include <cstdlib> /* * Ensure that dimension.h can be included in a C++ program and behave properly. diff --git a/tests/libdimension/tests.c b/tests/libdimension/tests.c index 154d00b..0684861 100644 --- a/tests/libdimension/tests.c +++ b/tests/libdimension/tests.c @@ -18,6 +18,7 @@ *************************************************************************/ #include "tests.h" +#include <stdlib.h> dmnsn_scene * dmnsn_new_default_scene() |