summaryrefslogtreecommitdiffstats
path: root/stringbuf.c
diff options
context:
space:
mode:
Diffstat (limited to 'stringbuf.c')
-rwxr-xr-xstringbuf.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/stringbuf.c b/stringbuf.c
index b9a7721d..12bb02d6 100755
--- a/stringbuf.c
+++ b/stringbuf.c
@@ -37,8 +37,16 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-
+#ifdef __FreeBSD__
+#define BSD
+#endif
+
+
+#ifdef BSD
+#include <stdlib.h>
+#else
#include <malloc.h>
+#endif
#include <assert.h>
#include <string.h>
#include "liblogging-stub.h"