blob: 9669af8eeee903b90693e8da955935b559eb2fc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (C) 2016 Intel Corporation.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// Qt-Security score:significant reason:default
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif
#include <QtCore/qglobal.h>
#define FORKFD_NO_SPAWNFD
#if defined(QT_NO_DEBUG) && !defined(NDEBUG)
# define NDEBUG
#endif
#include <forkfd.h>
#include "../../3rdparty/forkfd/forkfd.c"
|