X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=config.h;h=22e6b1b92060e09611311e1d8f4fb428b539d6e7;hb=5ae0b2351b8f682901e764c43ea1f9ecd198124f;hp=571924713bff44e99419d59e0affb31d791be5a2;hpb=bcc5017524dea12048cdbf45635ee987f8e85acc;p=debian%2Fyforth diff --git a/config.h b/config.h index 5719247..22e6b1b 100644 --- a/config.h +++ b/config.h @@ -1,8 +1,18 @@ -/* yForth? - Written by Luca Padovani (C) 1996/97 - * ------------------------------------------------------------------------ - * This software is FreeWare as long as it comes with this header in each - * source file, anyway you can use it or any part of it whatever - * you want. It comes without any warranty, so use it at your own risk. +/* yForth? - A Forth interpreter written in ANSI C + * Copyright (C) 2012 Luca Padovani + * + * 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 3 of the License, 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, see . * ------------------------------------------------------------------------ * Module name: config.h * Abstract: configuration file. Before any compilation please check @@ -63,10 +73,12 @@ * it if your machine is big-endian (e.g. Motorola, Sparc...) * Note that some compilers have LITTLE_ENDIAN yet defined. */ -#if __BYTE_ORDER == __LITTLE_ENDIAN +#ifndef LITTLE_ENDIAN +# if __BYTE_ORDER == __LITTLE_ENDIAN # define LITTLE_ENDIAN -#else +# else # undef LITTLE_ENDIAN +# endif #endif /* When DCELL_MEM is defined, double cell transfer is realized by memory