Merge branch 'macos-malloc-fix' into 'master'

ricoh2_buffer: fix malloc header location on macOS

See merge request sane-project/backends!90
merge-requests/128/head
Stanislav Yuzvinsky 2019-08-30 14:16:41 +00:00
commit e6b2786380
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"