llvm: fix lldb musl patch: typo fnctl.h -> fcntl.h

This commit is contained in:
Juan RP 2015-05-07 11:02:19 +02:00
parent 28e4fd2b7d
commit 102bbe4294

View file

@ -4,7 +4,7 @@
#ifdef _WIN32
#include "lldb/Host/windows/windows.h"
#else
+#include <fnctl.h> /* O_RDRW */
+#include <fcntl.h> /* O_RDRW */
#include <sys/file.h>
#include <sys/mman.h>
#include <sys/stat.h>