squash! kaem.run: Remove --bootstrap-mode.

This commit is contained in:
Janneke Nieuwenhuizen 2023-05-01 10:34:26 +02:00
parent 6ddf5b17de
commit 47a261dcf8
3 changed files with 31 additions and 6 deletions

View File

@ -21,12 +21,6 @@
#ifndef __MES_CC_H
#define __MES_CC_H
#define EOF -1
#if SYSTEM_LIBC
#define __raise(x) -1
#endif
typedef struct scm* SCM;
#if __MESC__

29
include/mes/lib-cc.h Normal file
View File

@ -0,0 +1,29 @@
/* -*-comment-start: "//";comment-end:""-*-
* GNU Mes --- Maxwell Equations of Software
* Copyright © 2022 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
*
* This file is part of GNU Mes.
*
* GNU Mes is free software; you can redistribute it and/or modify it
* 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.
*
* GNU Mes is distributed in the hope that it will be useful, but
* 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
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __MES_LIB_CC_H
#define __MES_LIB_CC_H
#define EOF -1
#if SYSTEM_LIBC
#define __raise(x) -1
#endif
#endif //__MES_LIB_CC_H

View File

@ -20,6 +20,8 @@
#ifndef __MES_SYS_TYPES_H
#define __MES_SYS_TYPES_H 1
#include <mes/lib-cc.h>
#if SYSTEM_LIBC
#undef __MES_SYS_TYPES_H
#include_next <sys/types.h>