Index: src/libcfa/rational.c
===================================================================
--- src/libcfa/rational.c	(revision 630a82a5214317b27ab087ea8d7665b217527f07)
+++ src/libcfa/rational.c	(revision 9827c7ba5413abbccb22da6f8446abc970030c2e)
@@ -11,6 +11,6 @@
 // Created On       : Wed Apr  6 17:54:28 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Apr  8 15:39:17 2016
-// Update Count     : 17
+// Last Modified On : Fri Apr  8 17:35:05 2016
+// Update Count     : 18
 // 
 
@@ -57,19 +57,13 @@
 Rational rational() {
     return (Rational){ 0, 1 };
-//	Rational t = { 0, 1 };
-//	return t;
 } // rational
 
 Rational rational( long int n ) {
     return (Rational){ n, 1 };
-//	Rational t = { n, 1 };
-//	return t;
 } // rational
 
 Rational rational( long int n, long int d ) {
     long int t = simplify( &n, &d );					// simplify
-//    r = (Rational){ n / t, d / t };
-	Rational t = { n / t, d / t };
-	return t;
+    return (Rational){ n / t, d / t };
 } // rational
 
