05fc3aef53
Replace the current license disclaimer in files by a SPDX-License-Identifier. Files that have to be modified by hand are modified. License files are organized under LICENSES directory. Task-number: QTBUG-67283 Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
37 lines
717 B
C
37 lines
717 B
C
// Copyright (C) 2018 The Qt Company. All rights reserved.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
#ifndef Q_RTEMS_PLATFORMDEFS_H
|
|
#define Q_RTEMS_PLATFORMDEFS_H
|
|
|
|
// Get Qt defines/settings
|
|
|
|
#include "qglobal.h"
|
|
|
|
#include <pthread.h>
|
|
#include <dirent.h>
|
|
#include <fcntl.h>
|
|
#include <signal.h>
|
|
#include <sys/select.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/time.h>
|
|
|
|
#include <pwd.h>
|
|
#include <grp.h>
|
|
|
|
#define __LINUX_ERRNO_EXTENSIONS__
|
|
#include <errno.h>
|
|
|
|
#include "../posix/qplatformdefs.h"
|
|
|
|
#ifdef __STRICT_ANSI__
|
|
#undef __STRICT_ANSI__
|
|
#endif
|
|
|
|
#undef QT_OPEN_LARGEFILE
|
|
#define QT_OPEN_LARGEFILE 0
|
|
|
|
#endif // Q_RTEMS_PLATFORMDEFS_H
|