From: vrokas Date: Sun, 3 Oct 2004 12:12:40 +0000 (+0000) Subject: * device/include/pic16/math.h, stdarg.h, stdio.h, stdlib.h: minor mistakes X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=f9ce822b3896bed665affc68b982fb6f94a1aea9;p=fw%2Fsdcc * device/include/pic16/math.h, stdarg.h, stdio.h, stdlib.h: minor mistakes updated git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3522 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/device/include/pic16/math.h b/device/include/pic16/math.h index 16ecbbed..3dc9ecb2 100644 --- a/device/include/pic16/math.h +++ b/device/include/pic16/math.h @@ -1,4 +1,5 @@ -/* math.h: Floating point math function declarations +/*------------------------------------------------------------------------- + math.h: Floating point math function declarations Ported to PIC16 port by Vangelis Rokas, 2004 (vrokas@otenet.gr) @@ -16,9 +17,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------*/ + +/* +** $Id$ +*/ -/* Version 1.0 - Initial release */ #ifndef __PIC16_MATH_H #define __PIC16_MATH_H 1 diff --git a/device/include/pic16/stdarg.h b/device/include/pic16/stdarg.h index 6e0f4688..d07a7425 100644 --- a/device/include/pic16/stdarg.h +++ b/device/include/pic16/stdarg.h @@ -1,13 +1,40 @@ -/*-----------------------------------------------------------------------------------*/ -/* stdarg.h - ANSI macros for variable parameter list */ -/*-----------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------- + stdarg.h - ANSI macros for variable parameter list -#ifndef __STDARG_H -#define __STDARG_H 1 + Ported to PIC16 port by Vangelis Rokas, 2004 (vrokas@otenet.gr) + + Written By - Sandeep Dutta . sandeep.dutta@usa.net (1998) -typedef unsigned char data * va_list ; -#define va_arg(marker,type) *((data type * )(marker += sizeof(type))) -#define va_start(marker,first) { marker = (va_list) ((char data * )&first); } -#define va_end(marker) marker = (va_list) 0; + 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. -#endif + 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + + In other words, you are welcome to use, share and improve this program. + You are forbidden to forbid anyone else to use, share and improve + what you give them. Help stamp out software-hoarding! +-------------------------------------------------------------------------*/ + +/* +** $Id$ +*/ + + +#ifndef __PIC16_STDARG_H +#define __PIC16_STDARG_H 1 + +typedef unsigned char * va_list; +#define va_start(list, last) list = (unsigned char *)&last + sizeof(last) +#define va_arg(list, type) *((type *)((list += sizeof(type)) - sizeof(type))) +#define va_end(list) list = ((va_list) 0) + +#endif /* __PIC16_STDARG_H */ diff --git a/device/include/pic16/stdio.h b/device/include/pic16/stdio.h index 5050b810..cd12f175 100644 --- a/device/include/pic16/stdio.h +++ b/device/include/pic16/stdio.h @@ -24,6 +24,10 @@ what you give them. Help stamp out software-hoarding! -------------------------------------------------------------------------*/ +/* +** $Id$ +*/ + #ifndef __PIC16_STDIO_H #define __PIC16_STDIO_H 1 diff --git a/device/include/pic16/stdlib.h b/device/include/pic16/stdlib.h index f13b4a02..d5280bd3 100644 --- a/device/include/pic16/stdlib.h +++ b/device/include/pic16/stdlib.h @@ -24,6 +24,10 @@ what you give them. Help stamp out software-hoarding! -------------------------------------------------------------------------*/ +/* +** $Id$ +*/ + #ifndef __PIC16_STDLIB_H #define __PIC16_STDLIB_H 1