Fix OSX compilation problem with malloc.h in itasc

This commit is contained in:
Benoit Bolsee 2009-09-25 07:44:29 +00:00
parent b8c7910be1
commit 7c9bb3c40a
5 changed files with 7 additions and 7 deletions

@ -7,8 +7,10 @@
#include "Armature.hpp"
#include <algorithm>
#include <malloc.h>
#include <string.h>
#ifndef __STDC__
#include <malloc.h>
#endif
namespace iTaSC {

@ -6,10 +6,11 @@
*/
#include <string.h>
#include <assert.h>
#include <malloc.h>
#include "Cache.hpp"
#include <math.h>
#ifndef __STDC__
#include <malloc.h>
#endif
#include "Cache.hpp"
namespace iTaSC {

@ -8,7 +8,6 @@
#include "CopyPose.hpp"
#include "kdl/kinfam_io.hpp"
#include <math.h>
#include <malloc.h>
#include <string.h>
namespace iTaSC

@ -8,7 +8,6 @@
#include "Distance.hpp"
#include "kdl/kinfam_io.hpp"
#include <math.h>
#include <malloc.h>
#include <string.h>
namespace iTaSC

@ -6,7 +6,6 @@
*/
#include "MovingFrame.hpp"
#include <malloc.h>
#include <string.h>
namespace iTaSC{