2022-05-10 10:06:48 +00:00
|
|
|
// 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
|
2018-03-19 10:59:11 +00:00
|
|
|
|
|
|
|
#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>
|
|
|
|
|
2018-03-20 13:32:54 +00:00
|
|
|
#define __LINUX_ERRNO_EXTENSIONS__
|
|
|
|
#include <errno.h>
|
2018-03-19 10:59:11 +00:00
|
|
|
|
2018-03-20 13:32:54 +00:00
|
|
|
#include "../posix/qplatformdefs.h"
|
2018-03-19 10:59:11 +00:00
|
|
|
|
|
|
|
#ifdef __STRICT_ANSI__
|
|
|
|
#undef __STRICT_ANSI__
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef QT_OPEN_LARGEFILE
|
|
|
|
#define QT_OPEN_LARGEFILE 0
|
|
|
|
|
|
|
|
#endif // Q_RTEMS_PLATFORMDEFS_H
|