1
0
Fork 0
mirror of https://git.code.sf.net/p/zint/code synced 2025-05-30 14:55:20 -04:00

ifdefs needed to find malloc.h on the mac.

This commit is contained in:
brianray 2010-02-28 03:43:32 +00:00
parent 190360ea6a
commit 27ce2abc7b
2 changed files with 8 additions and 0 deletions
backend

View file

@ -25,7 +25,11 @@
#include "large.h"
#include <stdio.h>
#include <string.h>
#ifdef __APPLE__
#include <sys/malloc.h>
#else
#include <malloc.h>
#endif
void horiz(struct zint_symbol *symbol, int row_no, int full)
{