mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-02-04 10:40:47 +01:00
Windows MSVC compile fix
Do not use unistd.h with MSVC because this header file does not
exist for this compiler.
Fixup of commit b0c0652005
This commit is contained in:
parent
59013d4c43
commit
59332d06d7
1 changed files with 2 additions and 0 deletions
|
|
@ -31,7 +31,9 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#ifndef _MSC_VER
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
#ifdef DBUS_UNIX
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue