Skip to content

Commit

Permalink
add __VXWORKS__ (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
razr authored May 8, 2020
1 parent 9060988 commit 84d697d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/fastcdr/Cdr.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <map>
#include <iostream>

#if !__APPLE__ && !__FreeBSD__
#if !__APPLE__ && !__FreeBSD__ && !__VXWORKS__
#include <malloc.h>
#else
#include <stdlib.h>
Expand Down
2 changes: 1 addition & 1 deletion include/fastcdr/FastCdr.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include <string>
#include <vector>

#if !__APPLE__ && !__FreeBSD__
#if !__APPLE__ && !__FreeBSD__ && !__VXWORKS__
#include <malloc.h>
#else
#include <stdlib.h>
Expand Down
2 changes: 1 addition & 1 deletion src/cpp/FastBuffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#include <fastcdr/FastBuffer.h>

#if !__APPLE__ && !__FreeBSD__
#if !__APPLE__ && !__FreeBSD__ && !__VXWORKS__
#include <malloc.h>
#else
#include <stdlib.h>
Expand Down

0 comments on commit 84d697d

Please sign in to comment.