2017-05-23 05:16:08 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes --- Maxwell Equations of Software
|
2017-11-21 18:22:26 +00:00
|
|
|
* Copyright © 2017 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2017-05-23 05:16:08 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* This file is part of GNU Mes.
|
2017-05-23 05:16:08 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is free software; you can redistribute it and/or modify it
|
2017-05-23 05:16:08 +00:00
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is distributed in the hope that it will be useful, but
|
2017-05-23 05:16:08 +00:00
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-07-22 12:24:36 +00:00
|
|
|
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2017-05-23 05:16:08 +00:00
|
|
|
*/
|
|
|
|
#ifndef __MES_SYS_TYPES_H
|
|
|
|
#define __MES_SYS_TYPES_H 1
|
|
|
|
|
2019-05-29 14:15:12 +00:00
|
|
|
#if SYSTEM_LIBC
|
2017-07-23 13:49:03 +00:00
|
|
|
#undef __MES_SYS_TYPES_H
|
2017-05-23 05:16:08 +00:00
|
|
|
#include_next <sys/types.h>
|
2019-05-29 14:15:12 +00:00
|
|
|
#else // ! SYSTEM_LIBC
|
2018-06-19 18:23:38 +00:00
|
|
|
|
2017-11-19 13:06:32 +00:00
|
|
|
#include <endian.h>
|
2017-12-05 18:49:37 +00:00
|
|
|
|
2018-06-19 18:23:38 +00:00
|
|
|
#ifndef __MESCCLIB__
|
|
|
|
#define __MESCCLIB__ 15
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef EOF
|
|
|
|
#define EOF -1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NULL
|
|
|
|
#define NULL 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __MES_CLOCK_T
|
|
|
|
#define __MES_CLOCK_T
|
|
|
|
#undef clock_t
|
|
|
|
typedef long clock_t;
|
|
|
|
#endif
|
|
|
|
|
2018-06-02 09:41:06 +00:00
|
|
|
#ifndef __MES_DEV_T
|
|
|
|
#define __MES_DEV_T
|
|
|
|
#undef dev_t
|
2018-08-15 16:26:55 +00:00
|
|
|
typedef long dev_t;
|
2018-06-02 09:41:06 +00:00
|
|
|
#endif
|
|
|
|
|
2018-06-19 18:23:38 +00:00
|
|
|
#if !defined (__MES_FILE_T) && ! defined (_FILE_T)
|
|
|
|
#define __MES_FILE_T
|
|
|
|
#define _FILE_T
|
2018-08-15 16:26:55 +00:00
|
|
|
typedef long FILE;
|
2018-06-19 18:23:38 +00:00
|
|
|
#endif
|
|
|
|
|
2018-06-02 09:41:06 +00:00
|
|
|
#ifndef __MES_GID_T
|
|
|
|
#define __MES_GID_T
|
|
|
|
#undef gid_t
|
2018-08-15 16:26:55 +00:00
|
|
|
typedef unsigned gid_t;
|
2018-06-02 09:41:06 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __MES_INO_T
|
|
|
|
#define __MES_INO_T
|
|
|
|
#undef ino_t
|
2018-08-15 16:26:55 +00:00
|
|
|
typedef unsigned long ino_t;
|
2017-12-05 18:49:37 +00:00
|
|
|
#endif
|
|
|
|
|
2018-08-26 16:34:53 +00:00
|
|
|
#ifndef __MES_INO64_T
|
|
|
|
#define __MES_INO64_T
|
|
|
|
#undef ino64_t
|
|
|
|
typedef unsigned long long ino64_t;
|
|
|
|
#endif
|
|
|
|
|
2019-07-17 20:54:13 +00:00
|
|
|
#if !defined (__MES_INTPTR_T) && !defined (__intptr_t_defined)
|
2018-06-19 18:23:38 +00:00
|
|
|
#define __MES_INTPTR_T
|
2019-07-17 20:54:13 +00:00
|
|
|
#define __intptr_t_defined
|
2018-06-19 18:23:38 +00:00
|
|
|
#undef intptr_t
|
|
|
|
typedef long intptr_t;
|
2019-07-17 20:54:13 +00:00
|
|
|
#undef uintptr_t
|
|
|
|
typedef unsigned long uintptr_t;
|
2018-06-19 18:23:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __MES_OFF_T
|
|
|
|
#define __MES_OFF_T
|
|
|
|
#undef off_t
|
2019-09-04 15:35:33 +00:00
|
|
|
typedef long off_t;
|
2018-06-19 18:23:38 +00:00
|
|
|
#endif
|
|
|
|
|
2018-08-26 16:34:53 +00:00
|
|
|
#ifndef __MES_OFF64_T
|
|
|
|
#define __MES_OFF64_T
|
|
|
|
#undef off64_t
|
|
|
|
typedef unsigned long long off64_t;
|
|
|
|
#endif
|
|
|
|
|
2018-05-27 08:28:30 +00:00
|
|
|
#ifndef __MES_PID_T
|
|
|
|
#define __MES_PID_T
|
2018-05-30 19:55:39 +00:00
|
|
|
#undef pid_t
|
2018-05-27 08:28:30 +00:00
|
|
|
typedef int pid_t;
|
|
|
|
#endif
|
|
|
|
|
2018-06-20 22:27:27 +00:00
|
|
|
#ifndef __PTRDIFF_T
|
|
|
|
#define __PTRDIFF_T
|
2018-06-19 18:23:38 +00:00
|
|
|
#ifndef __MES_PTRDIFF_T
|
|
|
|
#define __MES_PTRDIFF_T
|
|
|
|
#undef ptrdiff_t
|
|
|
|
typedef long ptrdiff_t;
|
|
|
|
#endif
|
2018-06-20 22:27:27 +00:00
|
|
|
#endif
|
2018-06-19 18:23:38 +00:00
|
|
|
|
|
|
|
#ifndef __MES_SIGVAL_T
|
|
|
|
#define __MES_SIGVAL_T
|
|
|
|
#undef clock_t
|
2018-08-15 16:26:55 +00:00
|
|
|
typedef long sigval_t;
|
2018-06-19 18:23:38 +00:00
|
|
|
#endif
|
|
|
|
|
2018-06-20 22:27:27 +00:00
|
|
|
#ifndef __SIZE_T
|
|
|
|
#define __SIZE_T
|
2018-06-02 09:41:06 +00:00
|
|
|
#ifndef __MES_SIZE_T
|
|
|
|
#define __MES_SIZE_T
|
|
|
|
#undef size_t
|
|
|
|
typedef unsigned long size_t;
|
2018-05-30 19:55:39 +00:00
|
|
|
#endif
|
2018-06-20 22:27:27 +00:00
|
|
|
#endif
|
2018-05-30 19:55:39 +00:00
|
|
|
|
2018-06-19 18:23:38 +00:00
|
|
|
#ifndef __MES_SSIZE_T
|
|
|
|
#define __MES_SSIZE_T
|
|
|
|
#undef ssize_t
|
|
|
|
typedef long ssize_t;
|
|
|
|
#endif
|
|
|
|
|
2018-05-27 08:28:30 +00:00
|
|
|
#ifndef __MES_UID_T
|
|
|
|
#define __MES_UID_T
|
2018-05-30 19:55:39 +00:00
|
|
|
#undef uid_t
|
2018-08-15 16:26:55 +00:00
|
|
|
typedef unsigned uid_t;
|
2018-05-27 08:28:30 +00:00
|
|
|
#endif
|
|
|
|
|
2019-07-21 11:23:49 +00:00
|
|
|
#ifndef __WCHAR_T
|
|
|
|
#define __WCHAR_T
|
|
|
|
#ifndef __MES_WCHAR_T
|
|
|
|
#define __MES_WCHAR_T
|
|
|
|
#undef wchar_t
|
|
|
|
typedef int wchar_t;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2019-05-29 14:15:12 +00:00
|
|
|
#endif // ! SYSTEM_LIBC
|
2017-05-23 05:16:08 +00:00
|
|
|
|
|
|
|
#endif // __MES_SYS_TYPES_H
|