Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Jul 2015 20:32:44 GMT
From:      clord@FreeBSD.org
To:        svn-soc-all@FreeBSD.org
Subject:   socsvn commit: r288681 - soc2015/clord/head/sys/contrib/ficl/i386
Message-ID:  <201507222032.t6MKWi78044582@socsvn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: clord
Date: Wed Jul 22 20:32:40 2015
New Revision: 288681
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=288681

Log:
  Specify to Ficl that there is a locally customized ficlTextOut function to use
  

Modified:
  soc2015/clord/head/sys/contrib/ficl/i386/sysdep.c
  soc2015/clord/head/sys/contrib/ficl/i386/sysdep.h

Modified: soc2015/clord/head/sys/contrib/ficl/i386/sysdep.c
==============================================================================
--- soc2015/clord/head/sys/contrib/ficl/i386/sysdep.c	Wed Jul 22 20:28:30 2015	(r288680)
+++ soc2015/clord/head/sys/contrib/ficl/i386/sysdep.c	Wed Jul 22 20:32:40 2015	(r288681)
@@ -53,12 +53,12 @@
 }
 #endif
 
-void  ficlTextOut(FICL_VM *pVM, char *msg, int fNewline)
+void  ficlTextOutLocal(FICL_VM *pVM, char *text, int fNewline)
 {
     IGNORE(pVM);
 
-    while(*msg != 0)
-	putchar(*(msg++));
+    while(*text != 0)
+	putchar(*(text++));
     if (fNewline)
 	putchar('\n');
 

Modified: soc2015/clord/head/sys/contrib/ficl/i386/sysdep.h
==============================================================================
--- soc2015/clord/head/sys/contrib/ficl/i386/sysdep.h	Wed Jul 22 20:28:30 2015	(r288680)
+++ soc2015/clord/head/sys/contrib/ficl/i386/sysdep.h	Wed Jul 22 20:32:40 2015	(r288681)
@@ -370,7 +370,7 @@
 **   and remainder
 */
 struct vm;
-void  ficlTextOut(struct vm *pVM, char *msg, int fNewline);
+void  ficlTextOutLocal(struct vm *pVM, char *text, int fNewline);
 void *ficlMalloc (size_t size);
 void  ficlFree   (void *p);
 void *ficlRealloc(void *p, size_t size);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507222032.t6MKWi78044582>