Index: src/examples/control_structures.c
===================================================================
--- src/examples/control_structures.c	(revision 6e7e2b36dcaa528c1778f81efe7654e171fb2197)
+++ src/examples/control_structures.c	(revision a61fea9ae36d50374d924b984ee54318ba2d7f61)
@@ -10,12 +10,14 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Wed May 27 18:07:42 2015
-// Update Count     : 1
+// Last Modified On : Thu Jun  4 11:21:12 2015
+// Update Count     : 23
 //
 
 int main() {
 	L1: {
-		L2: switch ( 3_333_333 ) {						// underscores in constant
-			case 1,2,3:									// 4~8, 4...8 not working
+		L2:	switch ( 3_333_333 ) {						// underscores in constant
+		  case 1,2,3:									// CFA
+		  case 4~8:										// CFA
+		  case 9 ... 10:								// gcc, must have spaces
 				L3: for ( ;; ) {
 					L4: for ( ;; ) {
@@ -24,5 +26,4 @@
 						break L3;
 						break L4;
-
 						//continue L1;					// labelled continue - should be an error 
 						//continue L2;					// should be an error
@@ -38,10 +39,11 @@
 		int i, j;
 		choose ( 7 ) {
-			case 1,2,3:
-				i = 3;
-				fallthru;
-			case 4,5,6:
-				j = 3;
-			default: ;
+		  case 1,2,3:
+			i = 3;
+			4;
+			fallthru;
+		  case 4,5,6:
+			j = 3;
+		  default: ;
 		} // choose
 	} // block
Index: src/examples/includes.c
===================================================================
--- src/examples/includes.c	(revision 6e7e2b36dcaa528c1778f81efe7654e171fb2197)
+++ src/examples/includes.c	(revision a61fea9ae36d50374d924b984ee54318ba2d7f61)
@@ -10,6 +10,6 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Wed May 27 18:17:04 2015
-// Update Count     : 1
+// Last Modified On : Wed Jun  3 23:48:26 2015
+// Update Count     : 6
 //
 
@@ -49,5 +49,5 @@
 #include <curses.h>
 #else
-#include <time.h>		// FAILS -- includes locale.h
+#include <curses.h>
 #endif // 0
 
