ricoh2_buffer: fix malloc header location on macOS

merge-requests/128/head
Caleb Xu 2019-08-01 23:51:20 -04:00
rodzic 90684c53bb
commit f18ef0e282
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -46,7 +46,12 @@
#include <memory.h>
#include <assert.h>
#if defined(__APPLE__) && defined(__MACH__)
#include <malloc/malloc.h>
#else
#include <malloc.h>
#endif
#include "../include/sane/sanei_debug.h"