mirror of
https://github.com/taglib/taglib.git
synced 2026-05-25 13:08:55 -04:00
Build fix for Haiku's fcntl.h which can't be found in sys/fcntl.h
This commit is contained in:
committed by
Urs Fleisch
parent
43190d30ed
commit
d1460b6fbf
@@ -32,7 +32,11 @@
|
||||
#else
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
#ifdef __HAIKU__
|
||||
#include <fcntl.h>
|
||||
#else
|
||||
#include <sys/fcntl.h>
|
||||
#endif
|
||||
#include <sys/stat.h>
|
||||
#endif
|
||||
#include <cstdio>
|
||||
|
||||
Reference in New Issue
Block a user