Index: src/libcfa/bits/algorithms.h
===================================================================
--- src/libcfa/bits/algorithms.h	(revision 5434d04e7a44a2c15e11c83a6017cfd4517c36bf)
+++ src/libcfa/bits/algorithms.h	(revision e1e8408b22136702256cde37d937165f85a711fb)
@@ -112,6 +112,6 @@
 static inline void __libcfa_small_sortN( void* * arr, size_t dim );
 
-forall( otype T | {  int ?<?( T, T ); int ?>?( T, T ); } )
-static inline void __libcfa_small_sort( T * arr, size_t dim ) {
+forall( dtype T )
+static inline void __libcfa_small_sort( T* * arr, size_t dim ) {
 	switch( dim ) {
 		case 1 : return;
Index: src/libcfa/stdlib
===================================================================
--- src/libcfa/stdlib	(revision 5434d04e7a44a2c15e11c83a6017cfd4517c36bf)
+++ src/libcfa/stdlib	(revision e1e8408b22136702256cde37d937165f85a711fb)
@@ -215,13 +215,13 @@
 void rand48seed( long int s );
 char rand48( void );
-char rand48( char l, char u );
+char rand48( char lower_bound, char upper_bound );
 int rand48( void );
 unsigned int rand48( void );
-unsigned int rand48( unsigned int u );
-unsigned int rand48( unsigned int l, unsigned int u );
+unsigned int rand48( unsigned int upper_bound );
+unsigned int rand48( unsigned int lower_bound, unsigned int upper_bound );
 long int rand48( void );
 unsigned long int rand48( void );
-unsigned long int rand48( unsigned long int u );
-unsigned long int rand48( unsigned long int l, unsigned long int u );
+unsigned long int rand48( unsigned long int upper_bound );
+unsigned long int rand48( unsigned long int lower_bound, unsigned long int upper_bound );
 float rand48( void );
 double rand48( void );
