Minor mpfr style change
authorMatt Arsenault <arsenm2@rpi.edu>
Wed, 6 Jan 2010 19:11:54 +0000 (14:11 -0500)
committerTim Horton <hortont424@gmail.com>
Fri, 22 Jan 2010 01:34:30 +0000 (20:34 -0500)
modules/mpfr/seed-mpfr-arithmetic.c
modules/mpfr/seed-mpfr-cmp.c
modules/mpfr/seed-mpfr-trig.c
modules/mpfr/seed-mpfr.c

index 683cba3..b23b3a6 100644 (file)
@@ -26,7 +26,7 @@ SeedValue seed_mpfr_add (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op1, op2;
@@ -87,7 +87,7 @@ SeedValue seed_mpfr_sub (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op1, op2;
@@ -148,7 +148,7 @@ SeedValue seed_mpfr_mul (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op1, op2;
@@ -335,7 +335,7 @@ SeedValue seed_mpfr_sqrt (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -365,7 +365,7 @@ SeedValue seed_mpfr_rec_sqrt (SeedContext ctx,
                               SeedObject this_object,
                               gsize argument_count,
                               const SeedValue args[],
-                              SeedException * exception)
+                              SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -395,7 +395,7 @@ SeedValue seed_mpfr_sqr (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -425,7 +425,7 @@ SeedValue seed_mpfr_root (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -466,7 +466,7 @@ SeedValue seed_mpfr_cbrt (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -496,7 +496,7 @@ SeedValue seed_mpfr_neg (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -526,7 +526,7 @@ SeedValue seed_mpfr_abs (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -556,7 +556,7 @@ SeedValue seed_mpfr_dim (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op1, op2;
@@ -591,7 +591,7 @@ SeedValue seed_mpfr_rint (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -621,7 +621,7 @@ SeedValue seed_mpfr_ceil (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_ptr rop, op;
     gint ret;
@@ -677,7 +677,7 @@ SeedValue seed_mpfr_round (SeedContext ctx,
                            SeedObject this_object,
                            gsize argument_count,
                            const SeedValue args[],
-                           SeedException * exception)
+                           SeedException *exception)
 {
     mpfr_ptr rop, op;
     gint ret;
@@ -733,7 +733,7 @@ SeedValue seed_mpfr_rint_ceil (SeedContext ctx,
                                SeedObject this_object,
                                gsize argument_count,
                                const SeedValue args[],
-                               SeedException * exception)
+                               SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -763,7 +763,7 @@ SeedValue seed_mpfr_rint_floor (SeedContext ctx,
                                 SeedObject this_object,
                                 gsize argument_count,
                                 const SeedValue args[],
-                                SeedException * exception)
+                                SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -793,7 +793,7 @@ SeedValue seed_mpfr_rint_round (SeedContext ctx,
                                 SeedObject this_object,
                                 gsize argument_count,
                                 const SeedValue args[],
-                                SeedException * exception)
+                                SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -823,7 +823,7 @@ SeedValue seed_mpfr_rint_trunc (SeedContext ctx,
                                 SeedObject this_object,
                                 gsize argument_count,
                                 const SeedValue args[],
-                                SeedException * exception)
+                                SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -853,7 +853,7 @@ SeedValue seed_mpfr_frac (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -883,7 +883,7 @@ SeedValue seed_mpfr_integer_p (SeedContext ctx,
                                SeedObject this_object,
                                gsize argument_count,
                                const SeedValue args[],
-                               SeedException * exception)
+                               SeedException *exception)
 {
     mpfr_ptr rop;
     gboolean ret;
@@ -900,7 +900,7 @@ SeedValue seed_mpfr_fmod (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op1, op2;
@@ -932,7 +932,7 @@ SeedValue seed_mpfr_remainder (SeedContext ctx,
                                SeedObject this_object,
                                gsize argument_count,
                                const SeedValue args[],
-                               SeedException * exception)
+                               SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op1, op2;
@@ -964,7 +964,7 @@ SeedValue seed_mpfr_nexttoward (SeedContext ctx,
                                 SeedObject this_object,
                                 gsize argument_count,
                                 const SeedValue args[],
-                                SeedException * exception)
+                                SeedException *exception)
 {
     mpfr_ptr rop, op;
 
@@ -991,7 +991,7 @@ SeedValue seed_mpfr_nextabove (SeedContext ctx,
                                SeedObject this_object,
                                gsize argument_count,
                                const SeedValue args[],
-                               SeedException * exception)
+                               SeedException *exception)
 {
     mpfr_ptr rop;
 
@@ -1008,7 +1008,7 @@ SeedValue seed_mpfr_nextbelow (SeedContext ctx,
                                SeedObject this_object,
                                gsize argument_count,
                                const SeedValue args[],
-                               SeedException * exception)
+                               SeedException *exception)
 {
     mpfr_ptr rop;
 
@@ -1025,7 +1025,7 @@ SeedValue seed_mpfr_min (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op1, op2;
@@ -1057,7 +1057,7 @@ SeedValue seed_mpfr_max (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op1, op2;
@@ -1089,7 +1089,7 @@ SeedValue seed_mpfr_prec_round (SeedContext ctx,
                                 SeedObject this_object,
                                 gsize argument_count,
                                 const SeedValue args[],
-                                SeedException * exception)
+                                SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mp_prec_t prec;
@@ -1112,7 +1112,7 @@ SeedValue seed_mpfr_signbit (SeedContext ctx,
                              SeedObject this_object,
                              gsize argument_count,
                              const SeedValue args[],
-                             SeedException * exception)
+                             SeedException *exception)
 {
     mpfr_ptr rop;
     gboolean ret;
@@ -1129,7 +1129,7 @@ SeedValue seed_mpfr_setsign (SeedContext ctx,
                              SeedObject this_object,
                              gsize argument_count,
                              const SeedValue args[],
-                             SeedException * exception)
+                             SeedException *exception)
 {
     mpfr_ptr rop, op;
     gint ret;
@@ -1161,7 +1161,7 @@ SeedValue seed_mpfr_copysign (SeedContext ctx,
                               SeedObject this_object,
                               gsize argument_count,
                               const SeedValue args[],
-                              SeedException * exception)
+                              SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op1, op2;
@@ -1193,7 +1193,7 @@ SeedValue seed_mpfr_mul_2si (SeedContext ctx,
                              SeedObject this_object,
                              gsize argument_count,
                              const SeedValue args[],
-                             SeedException * exception)
+                             SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -1233,7 +1233,7 @@ SeedValue seed_mpfr_div_2si (SeedContext ctx,
                              SeedObject this_object,
                              gsize argument_count,
                              const SeedValue args[],
-                             SeedException * exception)
+                             SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
index db57205..e33cceb 100644 (file)
@@ -25,7 +25,7 @@ SeedValue seed_mpfr_cmp (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_ptr rop, op;
     gdouble dop;
@@ -59,7 +59,7 @@ SeedValue seed_mpfr_cmpabs (SeedContext ctx,
                             SeedObject this_object,
                             gsize argument_count,
                             const SeedValue args[],
-                            SeedException * exception)
+                            SeedException *exception)
 {
     mpfr_ptr rop, op;
     gint ret;
@@ -88,7 +88,7 @@ seed_mpfr_nan_p (SeedContext ctx,
                  SeedObject this_object,
                  gsize argument_count,
                  const SeedValue args[],
-                 SeedException * exception)
+                 SeedException *exception)
 {
     mpfr_ptr rop;
     gboolean ret;
@@ -108,7 +108,7 @@ seed_mpfr_inf_p (SeedContext ctx,
                  SeedObject this_object,
                  gsize argument_count,
                  const SeedValue args[],
-                 SeedException * exception)
+                 SeedException *exception)
 {
     mpfr_ptr rop;
     gboolean ret;
@@ -128,7 +128,7 @@ seed_mpfr_number_p (SeedContext ctx,
                     SeedObject this_object,
                     gsize argument_count,
                     const SeedValue args[],
-                    SeedException * exception)
+                    SeedException *exception)
 {
     mpfr_ptr rop;
     gboolean ret;
@@ -148,7 +148,7 @@ seed_mpfr_zero_p (SeedContext ctx,
                   SeedObject this_object,
                   gsize argument_count,
                   const SeedValue args[],
-                  SeedException * exception)
+                  SeedException *exception)
 {
     mpfr_ptr rop;
     gboolean ret;
@@ -168,7 +168,7 @@ seed_mpfr_sgn (SeedContext ctx,
                SeedObject this_object,
                gsize argument_count,
                const SeedValue args[],
-               SeedException * exception)
+               SeedException *exception)
 {
     mpfr_ptr rop;
     gint ret;
@@ -187,7 +187,7 @@ SeedValue seed_mpfr_greater_p (SeedContext ctx,
                                SeedObject this_object,
                                gsize argument_count,
                                const SeedValue args[],
-                               SeedException * exception)
+                               SeedException *exception)
 {
     mpfr_ptr rop, op;
     gboolean ret;
@@ -215,7 +215,7 @@ SeedValue seed_mpfr_greaterequal_p (SeedContext ctx,
                                     SeedObject this_object,
                                     gsize argument_count,
                                     const SeedValue args[],
-                                    SeedException * exception)
+                                    SeedException *exception)
 {
     mpfr_ptr rop, op;
     gboolean ret;
@@ -243,7 +243,7 @@ SeedValue seed_mpfr_less_p (SeedContext ctx,
                             SeedObject this_object,
                             gsize argument_count,
                             const SeedValue args[],
-                            SeedException * exception)
+                            SeedException *exception)
 {
     mpfr_ptr rop, op;
     gboolean ret;
@@ -271,7 +271,7 @@ SeedValue seed_mpfr_lessequal_p (SeedContext ctx,
                                  SeedObject this_object,
                                  gsize argument_count,
                                  const SeedValue args[],
-                                 SeedException * exception)
+                                 SeedException *exception)
 {
     mpfr_ptr rop, op;
     gboolean ret;
@@ -299,7 +299,7 @@ SeedValue seed_mpfr_lessgreater_p (SeedContext ctx,
                                    SeedObject this_object,
                                    gsize argument_count,
                                    const SeedValue args[],
-                                   SeedException * exception)
+                                   SeedException *exception)
 {
     mpfr_ptr rop, op;
     gboolean ret;
@@ -327,7 +327,7 @@ SeedValue seed_mpfr_equal_p (SeedContext ctx,
                              SeedObject this_object,
                              gsize argument_count,
                              const SeedValue args[],
-                             SeedException * exception)
+                             SeedException *exception)
 {
     mpfr_ptr rop, op;
     gboolean ret;
@@ -355,7 +355,7 @@ SeedValue seed_mpfr_unordered_p (SeedContext ctx,
                                  SeedObject this_object,
                                  gsize argument_count,
                                  const SeedValue args[],
-                                 SeedException * exception)
+                                 SeedException *exception)
 {
     mpfr_ptr rop, op;
     gboolean ret;
@@ -384,7 +384,7 @@ SeedValue seed_mpfr_cmp_si_2exp (SeedContext ctx,
                                  SeedObject this_object,
                                  gsize argument_count,
                                  const SeedValue args[],
-                                 SeedException * exception)
+                                 SeedException *exception)
 {
     mpfr_ptr op1;
     gulong op2;
index 0a371b4..46df1b3 100644 (file)
@@ -26,7 +26,7 @@ SeedValue seed_mpfr_sin (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -56,7 +56,7 @@ SeedValue seed_mpfr_cos (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -86,7 +86,7 @@ SeedValue seed_mpfr_tan (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -116,7 +116,7 @@ SeedValue seed_mpfr_csc (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -146,7 +146,7 @@ SeedValue seed_mpfr_sec (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -176,7 +176,7 @@ SeedValue seed_mpfr_cot (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -206,7 +206,7 @@ SeedValue seed_mpfr_asin (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -237,7 +237,7 @@ SeedValue seed_mpfr_acos (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -267,7 +267,7 @@ SeedValue seed_mpfr_atan (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -300,7 +300,7 @@ SeedValue seed_mpfr_log (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -330,7 +330,7 @@ SeedValue seed_mpfr_log2 (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -360,7 +360,7 @@ SeedValue seed_mpfr_log10 (SeedContext ctx,
                            SeedObject this_object,
                            gsize argument_count,
                            const SeedValue args[],
-                           SeedException * exception)
+                           SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -392,7 +392,7 @@ SeedValue seed_mpfr_sinh (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -422,7 +422,7 @@ SeedValue seed_mpfr_cosh (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -452,7 +452,7 @@ SeedValue seed_mpfr_tanh (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -483,7 +483,7 @@ SeedValue seed_mpfr_sech (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -513,7 +513,7 @@ SeedValue seed_mpfr_csch (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -543,7 +543,7 @@ SeedValue seed_mpfr_coth (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -575,7 +575,7 @@ SeedValue seed_mpfr_asinh (SeedContext ctx,
                            SeedObject this_object,
                            gsize argument_count,
                            const SeedValue args[],
-                           SeedException * exception)
+                           SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -605,7 +605,7 @@ SeedValue seed_mpfr_acosh (SeedContext ctx,
                            SeedObject this_object,
                            gsize argument_count,
                            const SeedValue args[],
-                           SeedException * exception)
+                           SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -635,7 +635,7 @@ SeedValue seed_mpfr_atanh (SeedContext ctx,
                            SeedObject this_object,
                            gsize argument_count,
                            const SeedValue args[],
-                           SeedException * exception)
+                           SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -665,7 +665,7 @@ SeedValue seed_mpfr_log1p (SeedContext ctx,
                            SeedObject this_object,
                            gsize argument_count,
                            const SeedValue args[],
-                           SeedException * exception)
+                           SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -695,7 +695,7 @@ SeedValue seed_mpfr_expm1 (SeedContext ctx,
                            SeedObject this_object,
                            gsize argument_count,
                            const SeedValue args[],
-                           SeedException * exception)
+                           SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -725,7 +725,7 @@ SeedValue seed_mpfr_li2 (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -755,7 +755,7 @@ SeedValue seed_mpfr_gamma (SeedContext ctx,
                            SeedObject this_object,
                            gsize argument_count,
                            const SeedValue args[],
-                           SeedException * exception)
+                           SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -785,7 +785,7 @@ SeedValue seed_mpfr_lngamma (SeedContext ctx,
                              SeedObject this_object,
                              gsize argument_count,
                              const SeedValue args[],
-                             SeedException * exception)
+                             SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -815,7 +815,7 @@ SeedValue seed_mpfr_zeta (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -850,7 +850,7 @@ SeedValue seed_mpfr_erf (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -880,7 +880,7 @@ SeedValue seed_mpfr_erfc (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -911,7 +911,7 @@ SeedValue seed_mpfr_j0 (SeedContext ctx,
                         SeedObject this_object,
                         gsize argument_count,
                         const SeedValue args[],
-                        SeedException * exception)
+                        SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -941,7 +941,7 @@ SeedValue seed_mpfr_j1 (SeedContext ctx,
                         SeedObject this_object,
                         gsize argument_count,
                         const SeedValue args[],
-                        SeedException * exception)
+                        SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -971,7 +971,7 @@ SeedValue seed_mpfr_jn (SeedContext ctx,
                         SeedObject this_object,
                         gsize argument_count,
                         const SeedValue args[],
-                        SeedException * exception)
+                        SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -1010,7 +1010,7 @@ SeedValue seed_mpfr_y0 (SeedContext ctx,
                         SeedObject this_object,
                         gsize argument_count,
                         const SeedValue args[],
-                        SeedException * exception)
+                        SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -1040,7 +1040,7 @@ SeedValue seed_mpfr_y1 (SeedContext ctx,
                         SeedObject this_object,
                         gsize argument_count,
                         const SeedValue args[],
-                        SeedException * exception)
+                        SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -1070,7 +1070,7 @@ SeedValue seed_mpfr_yn (SeedContext ctx,
                         SeedObject this_object,
                         gsize argument_count,
                         const SeedValue args[],
-                        SeedException * exception)
+                        SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -1109,7 +1109,7 @@ SeedValue seed_mpfr_fma (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op1, op2, op3;
@@ -1143,7 +1143,7 @@ SeedValue seed_mpfr_fms (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op1, op2, op3;
@@ -1177,7 +1177,7 @@ SeedValue seed_mpfr_agm (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op1, op2;
@@ -1209,7 +1209,7 @@ SeedValue seed_mpfr_hypot (SeedContext ctx,
                            SeedObject this_object,
                            gsize argument_count,
                            const SeedValue args[],
-                           SeedException * exception)
+                           SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op1, op2;
@@ -1241,7 +1241,7 @@ SeedValue seed_mpfr_free_cache (SeedContext ctx,
                                 SeedObject this_object,
                                 gsize argument_count,
                                 const SeedValue args[],
-                                SeedException * exception)
+                                SeedException *exception)
 {
     CHECK_ARG_COUNT("mpfr.free_cache", 0);
     mpfr_free_cache();
@@ -1253,7 +1253,7 @@ SeedValue seed_mpfr_clear_flags (SeedContext ctx,
                                  SeedObject this_object,
                                  gsize argument_count,
                                  const SeedValue args[],
-                                 SeedException * exception)
+                                 SeedException *exception)
 {
     CHECK_ARG_COUNT("mpfr.clear_flags", 0);
     mpfr_clear_flags();
index f5e76dc..72fbde8 100644 (file)
@@ -50,7 +50,7 @@ seed_mpfr_out_str (SeedContext ctx,
                    SeedObject this_object,
                    gsize argument_count,
                    const SeedValue args[],
-                   SeedException * exception)
+                   SeedException *exception)
 {
     gsize n;
     FILE* stream;
@@ -78,7 +78,7 @@ seed_mpfr_print (SeedContext ctx,
                  SeedObject this_object,
                  gsize argument_count,
                  const SeedValue args[],
-                 SeedException * exception)
+                 SeedException *exception)
 {
     mpfr_ptr op;
     mpfr_rnd_t rnd;
@@ -103,7 +103,7 @@ seed_mpfr_const_pi (SeedContext ctx,
                     SeedObject this_object,
                     gsize argument_count,
                     const SeedValue args[],
-                    SeedException * exception)
+                    SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop;
@@ -125,7 +125,7 @@ seed_mpfr_const_euler (SeedContext ctx,
                        SeedObject this_object,
                        gsize argument_count,
                        const SeedValue args[],
-                       SeedException * exception)
+                       SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop;
@@ -147,7 +147,7 @@ seed_mpfr_const_catalan (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop;
@@ -169,7 +169,7 @@ seed_mpfr_get_d (SeedContext ctx,
                  SeedObject this_object,
                  gsize argument_count,
                  const SeedValue args[],
-                 SeedException * exception)
+                 SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop;
@@ -191,7 +191,7 @@ seed_mpfr_fits_ulong_p (SeedContext ctx,
                         SeedObject this_object,
                         gsize argument_count,
                         const SeedValue args[],
-                        SeedException * exception)
+                        SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop;
@@ -213,7 +213,7 @@ seed_mpfr_fits_slong_p (SeedContext ctx,
                         SeedObject this_object,
                         gsize argument_count,
                         const SeedValue args[],
-                        SeedException * exception)
+                        SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop;
@@ -235,7 +235,7 @@ seed_mpfr_fits_uint_p (SeedContext ctx,
                        SeedObject this_object,
                        gsize argument_count,
                        const SeedValue args[],
-                       SeedException * exception)
+                       SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop;
@@ -257,7 +257,7 @@ seed_mpfr_fits_sint_p (SeedContext ctx,
                        SeedObject this_object,
                        gsize argument_count,
                        const SeedValue args[],
-                       SeedException * exception)
+                       SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop;
@@ -279,7 +279,7 @@ seed_mpfr_fits_ushort_p (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop;
@@ -301,7 +301,7 @@ seed_mpfr_fits_sshort_p (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop;
@@ -323,7 +323,7 @@ seed_mpfr_fits_intmax_p (SeedContext ctx,
                          SeedObject this_object,
                          gsize argument_count,
                          const SeedValue args[],
-                         SeedException * exception)
+                         SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop;
@@ -345,7 +345,7 @@ seed_mpfr_fits_uintmax_p (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop;
@@ -442,7 +442,7 @@ seed_mpfr_set (SeedContext ctx,
                SeedObject this_object,
                gsize argument_count,
                const SeedValue args[],
-               SeedException * exception)
+               SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop, op;
@@ -484,7 +484,7 @@ SeedValue seed_mpfr_set_inf (SeedContext ctx,
                              SeedObject this_object,
                              gsize argument_count,
                              const SeedValue args[],
-                             SeedException * exception)
+                             SeedException *exception)
 {
     mpfr_ptr rop;
     gint sign;
@@ -512,7 +512,7 @@ SeedValue seed_mpfr_set_nan (SeedContext ctx,
                              SeedObject this_object,
                              gsize argument_count,
                              const SeedValue args[],
-                             SeedException * exception)
+                             SeedException *exception)
 {
     mpfr_ptr rop;
 
@@ -530,7 +530,7 @@ SeedValue seed_mpfr_swap (SeedContext ctx,
                           SeedObject this_object,
                           gsize argument_count,
                           const SeedValue args[],
-                          SeedException * exception)
+                          SeedException *exception)
 {
     mpfr_ptr rop, op;
 
@@ -557,7 +557,7 @@ SeedValue seed_mpfr_can_round (SeedContext ctx,
                                SeedObject this_object,
                                gsize argument_count,
                                const SeedValue args[],
-                               SeedException * exception)
+                               SeedException *exception)
 {
     mpfr_rnd_t rnd1, rnd2;
     mpfr_ptr rop;
@@ -584,7 +584,7 @@ seed_mpfr_construct_with_set(SeedContext ctx,
                              SeedObject constructor,
                              gsize argument_count,
                              const SeedValue args[],
-                             SeedException* exception)
+                             SeedException*exception)
 {
     mpfr_prec_t prec;
     mpfr_rnd_t rnd;
@@ -660,7 +660,7 @@ seed_mpfr_construct(SeedContext ctx,
                     SeedObject constructor,
                     gsize argument_count,
                     const SeedValue args[],
-                    SeedException* exception)
+                    SeedException*exception)
 {
     mpfr_prec_t prec;
     mpfr_ptr newmp = (mpfr_ptr) g_malloc(sizeof(mpfr_t));
@@ -694,7 +694,7 @@ seed_mpfr_construct(SeedContext ctx,
 SeedValue seed_mpfr_get_version (SeedContext ctx,
                                  SeedObject this_object,
                                  SeedString property_name,
-                                 SeedException * exception)
+                                 SeedException *exception)
 {
     const gchar* str;
     SeedValue ret;
@@ -708,7 +708,7 @@ SeedValue seed_mpfr_get_version (SeedContext ctx,
 SeedValue seed_mpfr_get_patches (SeedContext ctx,
                                  SeedObject this_object,
                                  SeedString property_name,
-                                 SeedException * exception)
+                                 SeedException *exception)
 {
     const gchar* str;
     SeedValue ret;
@@ -723,7 +723,7 @@ static gboolean seed_mpfr_set_emin (SeedContext ctx,
                                     SeedObject this_object,
                                     SeedString property_name,
                                     SeedValue value,
-                                    SeedException* exception)
+                                    SeedException*exception)
 {
     mp_exp_t exp;
     gint ret;
@@ -738,7 +738,7 @@ static gboolean seed_mpfr_set_emax (SeedContext ctx,
                                     SeedObject this_object,
                                     SeedString property_name,
                                     SeedValue value,
-                                    SeedException * exception)
+                                    SeedException *exception)
 {
     mp_exp_t exp;
     gint ret;
@@ -752,7 +752,7 @@ static gboolean seed_mpfr_set_emax (SeedContext ctx,
 SeedValue seed_mpfr_get_emax (SeedContext ctx,
                               SeedObject this_object,
                               SeedString property_name,
-                              SeedExceptionexception)
+                              SeedException *exception)
 {
     mp_exp_t exp;
     exp = mpfr_get_emax();
@@ -847,7 +847,7 @@ gboolean seed_mpfr_set_overflow (SeedContext ctx,
                                  SeedObject this_object,
                                  SeedString property_name,
                                  SeedValue value,
-                                 SeedException * exception)
+                                 SeedException *exception)
 {
     gboolean setorclear;
     setorclear = seed_value_to_boolean(ctx, value, exception);
@@ -862,7 +862,7 @@ gboolean seed_mpfr_set_overflow (SeedContext ctx,
 SeedValue seed_mpfr_nanflag_p (SeedContext ctx,
                                SeedObject this_object,
                                SeedString property_name,
-                               SeedException* exception)
+                               SeedException*exception)
 {
     gint ret = mpfr_nanflag_p();
     return seed_value_from_int(ctx, ret, exception);
@@ -872,7 +872,7 @@ gboolean seed_mpfr_set_nanflag (SeedContext ctx,
                                 SeedObject this_object,
                                 SeedString property_name,
                                 SeedValue value,
-                                SeedException * exception)
+                                SeedException *exception)
 {
     gboolean setorclear;
     setorclear = seed_value_to_boolean(ctx, value, exception);
@@ -887,7 +887,7 @@ gboolean seed_mpfr_set_nanflag (SeedContext ctx,
 SeedValue seed_mpfr_inexflag_p (SeedContext ctx,
                                 SeedObject this_object,
                                 SeedString property_name,
-                                SeedException* exception)
+                                SeedException*exception)
 {
     gint ret = mpfr_inexflag_p();
     return seed_value_from_int(ctx, ret, exception);
@@ -897,7 +897,7 @@ gboolean seed_mpfr_set_inexflag (SeedContext ctx,
                                  SeedObject this_object,
                                  SeedString property_name,
                                  SeedValue value,
-                                 SeedException * exception)
+                                 SeedException *exception)
 {
     gboolean setorclear;
     setorclear = seed_value_to_boolean(ctx, value, exception);
@@ -912,7 +912,7 @@ gboolean seed_mpfr_set_inexflag (SeedContext ctx,
 SeedValue seed_mpfr_erangeflag_p (SeedContext ctx,
                                   SeedObject this_object,
                                   SeedString property_name,
-                                  SeedExceptionexception)
+                                  SeedException *exception)
 {
     gint ret = mpfr_erangeflag_p();
     return seed_value_from_int(ctx, ret, exception);
@@ -922,7 +922,7 @@ gboolean seed_mpfr_set_erangeflag (SeedContext ctx,
                                    SeedObject this_object,
                                    SeedString property_name,
                                    SeedValue value,
-                                   SeedException * exception)
+                                   SeedException *exception)
 {
     gboolean setorclear;
     setorclear = seed_value_to_boolean(ctx, value, exception);
@@ -940,7 +940,7 @@ seed_mpfr_subnormalize (SeedContext ctx,
                         SeedObject this_object,
                         gsize argument_count,
                         const SeedValue args[],
-                        SeedException * exception)
+                        SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop;
@@ -963,7 +963,7 @@ seed_mpfr_check_range (SeedContext ctx,
                        SeedObject this_object,
                        gsize argument_count,
                        const SeedValue args[],
-                       SeedException * exception)
+                       SeedException *exception)
 {
     mpfr_rnd_t rnd;
     mpfr_ptr rop;