Index: libcfa/src/iostream.hfa
===================================================================
--- libcfa/src/iostream.hfa	(revision d1a9ff51fa9823cee1e1bb8f45cb184ec5617dec)
+++ libcfa/src/iostream.hfa	(revision c7f834ee97540f7ecf7e9479b5c836cab282be31)
@@ -10,6 +10,6 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Feb  7 17:53:52 2020
-// Update Count     : 336
+// Last Modified On : Thu Feb 20 15:30:56 2020
+// Update Count     : 337
 //
 
@@ -98,4 +98,10 @@
 	ostype & ?|?( ostype &, unsigned long long int );
 	void ?|?( ostype &, unsigned long long int );
+#if defined( __SIZEOF_INT128__ )
+	ostype & ?|?( ostype &, int128 );
+	void ?|?( ostype &, int128 );
+	ostype & ?|?( ostype &, unsigned int128 );
+	void ?|?( ostype &, unsigned int128 );
+#endif // __SIZEOF_INT128__
 
 	ostype & ?|?( ostype &, float );
@@ -206,4 +212,8 @@
 IntegralFMTDecl( signed long long int, 'd' )
 IntegralFMTDecl( unsigned long long int, 'u' )
+#if defined( __SIZEOF_INT128__ )
+IntegralFMTDecl( int128, 'd' )
+IntegralFMTDecl( unsigned int128, 'u' )
+#endif
 
 //*********************************** floating point ***********************************
