Fix -Wreturn-type errors in fNNRandom

In case global CFLAGS contains -Werror=return-type, compilation fails as
shown below. For some reason gcc is unable to recognize the possible
range of values in the switch statements, which can only ever be between
zero and seven.

Assist the compiler by adding a default statement. This fixes
compilation in openSUSE Tumbleweed, which adds -Werror=return-type to
global CFLAGS.

source/genCases_f64.c: In function 'f64Random':
source/genCases_f64.c:559:1: error: control reaches end of non-void function [-Werror=return-type]

source/genCases_f32.c: In function 'f32Random':
source/genCases_f32.c:417:1: error: control reaches end of non-void function [-Werror=return-type]

source/genCases_f16.c: In function 'f16Random':
source/genCases_f16.c:336:1: error: control reaches end of non-void function [-Werror=return-type]

Signed-off-by: Olaf Hering <olaf@aepfle.de>
diff --git a/source/genCases_f16.c b/source/genCases_f16.c
index ea4c025..0155458 100644
--- a/source/genCases_f16.c
+++ b/source/genCases_f16.c
@@ -330,6 +330,7 @@
      case 6:
         return f16RandomQInfP3();
      case 7:
+     default:
         return f16RandomQInfPInf();
     }
 
diff --git a/source/genCases_f32.c b/source/genCases_f32.c
index 3da3a29..695d050 100644
--- a/source/genCases_f32.c
+++ b/source/genCases_f32.c
@@ -411,6 +411,7 @@
      case 6:
         return f32RandomQInfP3();
      case 7:
+     default:
         return f32RandomQInfPInf();
     }
 
diff --git a/source/genCases_f64.c b/source/genCases_f64.c
index 5229e89..4d74ca6 100644
--- a/source/genCases_f64.c
+++ b/source/genCases_f64.c
@@ -553,6 +553,7 @@
      case 6:
         return f64RandomQInfP3();
      case 7:
+     default:
         return f64RandomQInfPInf();
     }