This is the mail archive of the fortran@gcc.gnu.org mailing list for the GNU Fortran project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
+#ifdef HAVE_GFC_REAL_16
+
+static GFC_UINTEGER_4 kiss_seed[12] = {
+ KISS_DEFAULT_SEED_1,
+ KISS_DEFAULT_SEED_2,
+ KISS_DEFAULT_SEED_3
+};
+#else
+static GFC_UINTEGER_4 kiss_seed[8] = {
+ KISS_DEFAULT_SEED_1,
+ KISS_DEFAULT_SEED_2
+};
+#endif
[...]
+#ifdef HAVE_GFC_REAL_16
+
+static const GFC_UINTEGER_4 kiss_default_seed[12] =
+ { KISS_DEFAULT_SEED_1, KISS_DEFAULT_SEED_2,
+ KISS_DEFAULT_SEED_3};
+
+#else
+static const GFC_UINTEGER_4 kiss_default_seed[8] =
+ { KISS_DEFAULT_SEED_1, KISS_DEFAULT_SEED_2 };
+
+#endif
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |