Index: src/prelude/prelude.cf
===================================================================
--- src/prelude/prelude.cf	(revision 496ab8d744859c54359500aaa12b33154a6a2b4f)
+++ src/prelude/prelude.cf	(revision 8053d2c93f63acf13a8ce75ad0fb9311f6d22a12)
@@ -7,6 +7,6 @@
 // Created On       : Sat Nov 29 07:23:41 2014
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sun Oct  8 12:21:33 2017
-// Update Count     : 97
+// Last Modified On : Sat Oct 28 16:33:09 2017
+// Update Count     : 102
 //
 
@@ -41,5 +41,4 @@
 _Bool			?++( _Bool & ),				?++( volatile _Bool & );
 _Bool			?--( _Bool & ),				?--( volatile _Bool & );
-unsigned char		?++( unsigned char & ),			?++( volatile unsigned char & );
 signed short		?++( signed short & ),			?++( volatile signed short & );
 signed short		?--( signed short & ),			?--( volatile signed short & );
@@ -196,15 +195,15 @@
 long double _Complex	?+?( long double _Complex, long double _Complex ),	?-?( long double _Complex, long double _Complex );
 
-forall( dtype T | sized(T) ) T *			?+?(		    T *,	  ptrdiff_t );
-forall( dtype T | sized(T) ) T *			?+?(	      ptrdiff_t,		T * );
+forall( dtype T | sized(T) ) T *		?+?(		    T *,	  ptrdiff_t );
+forall( dtype T | sized(T) ) T *		?+?(	      ptrdiff_t,		T * );
 forall( dtype T | sized(T) ) const T *		?+?( const	    T *,	  ptrdiff_t );
 forall( dtype T | sized(T) ) const T *		?+?(	      ptrdiff_t, const		T * );
-forall( dtype T | sized(T) ) volatile T *		?+?(	   volatile T *,	  ptrdiff_t );
-forall( dtype T | sized(T) ) volatile T *		?+?(	      ptrdiff_t,       volatile T * );
+forall( dtype T | sized(T) ) volatile T *	?+?(	   volatile T *,	  ptrdiff_t );
+forall( dtype T | sized(T) ) volatile T *	?+?(	      ptrdiff_t,       volatile T * );
 forall( dtype T | sized(T) ) const volatile T *	?+?( const volatile T *,	  ptrdiff_t );
 forall( dtype T | sized(T) ) const volatile T *	?+?(	      ptrdiff_t, const volatile T * );
-forall( dtype T | sized(T) ) T *			?-?(		    T *,	  ptrdiff_t );
+forall( dtype T | sized(T) ) T *		?-?(		    T *,	  ptrdiff_t );
 forall( dtype T | sized(T) ) const T *		?-?( const	    T *,	  ptrdiff_t );
-forall( dtype T | sized(T) ) volatile T *		?-?(	   volatile T *,	  ptrdiff_t );
+forall( dtype T | sized(T) ) volatile T *	?-?(	   volatile T *,	  ptrdiff_t );
 forall( dtype T | sized(T) ) const volatile T *	?-?( const volatile T *,	  ptrdiff_t );
 forall( dtype T | sized(T) ) ptrdiff_t		?-?( const volatile T *, const volatile T * );
@@ -232,6 +231,6 @@
 signed int ?<?( _Bool, _Bool ),						?<=?( _Bool, _Bool ),
 	   ?>?( _Bool, _Bool ),						?>=?( _Bool, _Bool );
-signed int ?<?( char, char ),				?<=?( char, char ),
-	   ?>?( char, char ),				?>=?( char, char );
+signed int ?<?( char, char ),						?<=?( char, char ),
+	   ?>?( char, char ),						?>=?( char, char );
 signed int ?<?( signed char, signed char ),				?<=?( signed char, signed char ),
 	   ?>?( signed char, signed char ),				?>=?( signed char, signed char );
@@ -241,5 +240,5 @@
 	   ?>?( signed short, signed short ),				?>=?( signed short, signed short );
 signed int ?<?( unsigned short, unsigned short ),			?<=?( unsigned short, unsigned short ),
-	   ?>?( unsigned short, unsigned short ),				?>=?( unsigned short, unsigned short );
+	   ?>?( unsigned short, unsigned short ),			?>=?( unsigned short, unsigned short );
 signed int ?<?( signed int, signed int ),				?<=?( signed int, signed int ),
 	   ?>?( signed int, signed int ),				?>=?( signed int, signed int );
@@ -474,18 +473,18 @@
 forall( ftype FT ) FT *			?=?( FT * volatile &, zero_t );
 
-forall( dtype T | sized(T) ) T *			?+=?(		     T *	  &, ptrdiff_t );
-forall( dtype T | sized(T) ) T *			?+=?(		     T * volatile &, ptrdiff_t );
+forall( dtype T | sized(T) ) T *		?+=?(		     T *	  &, ptrdiff_t );
+forall( dtype T | sized(T) ) T *		?+=?(		     T * volatile &, ptrdiff_t );
 forall( dtype T | sized(T) ) const T *		?+=?( const	     T *	  &, ptrdiff_t );
 forall( dtype T | sized(T) ) const T *		?+=?( const	     T * volatile &, ptrdiff_t );
-forall( dtype T | sized(T) ) volatile T *		?+=?(	    volatile T *	  &, ptrdiff_t );
-forall( dtype T | sized(T) ) volatile T *		?+=?(	    volatile T * volatile &, ptrdiff_t );
+forall( dtype T | sized(T) ) volatile T *	?+=?(	    volatile T *	  &, ptrdiff_t );
+forall( dtype T | sized(T) ) volatile T *	?+=?(	    volatile T * volatile &, ptrdiff_t );
 forall( dtype T | sized(T) ) const volatile T *	?+=?( const volatile T *	  &, ptrdiff_t );
 forall( dtype T | sized(T) ) const volatile T *	?+=?( const volatile T * volatile &, ptrdiff_t );
-forall( dtype T | sized(T) ) T *			?-=?(		     T *	  &, ptrdiff_t );
-forall( dtype T | sized(T) ) T *			?-=?(		     T * volatile &, ptrdiff_t );
+forall( dtype T | sized(T) ) T *		?-=?(		     T *	  &, ptrdiff_t );
+forall( dtype T | sized(T) ) T *		?-=?(		     T * volatile &, ptrdiff_t );
 forall( dtype T | sized(T) ) const T *		?-=?( const	     T *	  &, ptrdiff_t );
 forall( dtype T | sized(T) ) const T *		?-=?( const	     T * volatile &, ptrdiff_t );
-forall( dtype T | sized(T) ) volatile T *		?-=?(	    volatile T *	  &, ptrdiff_t );
-forall( dtype T | sized(T) ) volatile T *		?-=?(	    volatile T * volatile &, ptrdiff_t );
+forall( dtype T | sized(T) ) volatile T *	?-=?(	    volatile T *	  &, ptrdiff_t );
+forall( dtype T | sized(T) ) volatile T *	?-=?(	    volatile T * volatile &, ptrdiff_t );
 forall( dtype T | sized(T) ) const volatile T *	?-=?( const volatile T *	  &, ptrdiff_t );
 forall( dtype T | sized(T) ) const volatile T *	?-=?( const volatile T * volatile &, ptrdiff_t );
@@ -503,5 +502,5 @@
 signed long long int	?=?( signed long long int &, signed long long int ),	?=?( volatile signed long long int &, signed long long int );
 unsigned long long int	?=?( unsigned long long int &, unsigned long long int ), ?=?( volatile unsigned long long int &, unsigned long long int );
-zero_t		?=?( zero_t &, zero_t );
+zero_t			?=?( zero_t &, zero_t );
 one_t			?=?( one_t &, one_t );
 
@@ -674,7 +673,4 @@
 			?+=?( long double _Complex &, long double _Complex ), ?+=?( volatile long double _Complex &, long double _Complex ),
 			?-=?( long double _Complex &, long double _Complex ), ?-=?( volatile long double _Complex &, long double _Complex );
-
-
-
 
 
@@ -846,8 +842,8 @@
 forall( dtype DT ) void ^?{}( const volatile  DT *	   &);
 
-void 	^?{}(		    void *	    &);
-void 	^?{}( const	    void *	    &);
-void 	^?{}(	   volatile void *	    &);
-void 	^?{}( const volatile void *	    &);
+void ^?{}(		    void *	    &);
+void ^?{}( const	    void *	    &);
+void ^?{}(	   volatile void *	    &);
+void ^?{}( const   volatile void *	    &);
 
 // Local Variables: //
