/* * rtmk - A free real-time micro-kernel. * Copyright (c) 1999, 2000 Johan Rydberg. * * This program 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 2, or (at your option) * any later version. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ /* * $Id: be-c.h,v 1.1 2001/12/13 02:09:38 jrydberg Exp $ */ #define TARGET_BODY_START_CHAR '{' #define TARGET_BODY_END_CHAR '}' /* Set TARGET_SUPPORTS_MULTIPLE_ROUTINES to 1 if the backend support routines with the same name but diffrent type declarations (i.e., parametric polymorphism). */ #define TARGET_SUPPORTS_MULTIPLE_ROUTINES 0 /* Default size of static buffers (if used) */ #define TARGET_STATIC_BUFFER_SIZE 512 /* If we can't reuse the out buffer for reply, set this to 1 */ #define TARGET_CANT_REUSE_BUFFER 0 /* When a type is of NO-FIXED-LENGTH, we create a new argument with this sufix. */ #define TARGET_LENGTH_SUFIX "__length"