Index: libcfa/src/iostream.cfa
===================================================================
--- libcfa/src/iostream.cfa	(revision bd5b4431685ed65b0e277a422e5e681bde612c63)
+++ libcfa/src/iostream.cfa	(revision e59e66394cd4e1bfeeaec2adeaf10464f80f68ca)
@@ -10,6 +10,6 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Feb 20 15:30:58 2020
-// Update Count     : 827
+// Last Modified On : Thu Feb 20 15:53:23 2020
+// Update Count     : 829
 //
 
@@ -19,4 +19,5 @@
 #include <stdio.h>
 #include <stdbool.h>									// true/false
+#include <stdint.h>										// UINT64_MAX
 //#include <string.h>									// strlen, strcmp
 extern size_t strlen (const char *__s) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));
@@ -182,5 +183,5 @@
 
 	ostype & ?|?( ostype & os, int128 llli ) {
-		if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );
+		if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
 		base10_128( os, llli );
 		return os;
@@ -191,5 +192,5 @@
 
 	ostype & ?|?( ostype & os, unsigned int128 ullli ) {
-		if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );
+		if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
 		base10_128( os, ullli );
 		return os;
@@ -549,5 +550,5 @@
 forall( dtype ostype | ostream( ostype ) ) { \
 	ostype & ?|?( ostype & os, _Ostream_Manip(T) f ) { \
-		if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) ); \
+		if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) ); \
 \
 		if ( f.base == 'b' | f.base == 'o' | f.base == 'x' | f.base == 'X' ) { \
