* src/dbusbind.c: Include fcntl.h if needed. (Bug#80373)

This commit is contained in:
Michael Albinus 2026-02-22 16:30:19 +01:00
parent b7c5f39fd1
commit 195d2f7a74

View file

@ -29,6 +29,11 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#include "pdumper.h"
#include "process.h"
#ifndef O_RDONLY
/* WINDOWSNT. */
#include <fcntl.h>
#endif
#ifndef DBUS_NUM_MESSAGE_TYPES
#define DBUS_NUM_MESSAGE_TYPES 5
#endif