* device/include/pic16/stdio.h, device/lib/pic16/libc/stdio/streams.c,
[fw/sdcc] / device / lib / pic16 / libc / stdio / strmgpsim.c
index f50324fda726cc81ab43bba59180bc4642e4fb42..300cffd3d9905a028954adc75d2e17856b14a505 100644 (file)
@@ -2,7 +2,7 @@
     strmusart.c - usart stream putchar
 
     Modified for pic16 port, by Vangelis Rokas, 2004 (vrokas@otenet.gr)
-    
+
     Written By - Sandeep Dutta . sandeep.dutta@usa.net (1999)
 
     This library is free software; you can redistribute it and/or modify it
     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$
-*/
+   As a special exception, if you link this library with other files,
+   some of which are compiled with SDCC, to produce an executable,
+   this library does not by itself cause the resulting executable
+   to be covered by the GNU General Public License.
+   This exception does not however invalidate any other reasons why
+   the executable file might be covered by the GNU General Public License.
+-------------------------------------------------------------------------*/
 
 extern WREG;
 
 /* note that USART should already been initialized */
-void __stream_gpsim_putchar(unsigned char c) __wparam __naked
+void
+__stream_gpsim_putchar (char c) __wparam __naked
 {
   c;
   __asm
-    MOVFF      _WREG, 0xf7f
+    MOVFF       _WREG, 0xf7f
     RETURN
   __endasm;
 }