5cc28c8ebd
- remove REGPARM entirely, it doesn't do any good these days and blocks portability - remove use of gcc, no longer needed - patch some portability issues MFH: 2026Q1 Sponsored by: Raptor Computing Systems, LLC
12 lines
351 B
C
12 lines
351 B
C
--- formulas.h.orig 2001-04-09 13:00:19 UTC
|
|
+++ formulas.h
|
|
@@ -50,7 +50,7 @@ struct formula {
|
|
#define FORMULAMAGIC 1121
|
|
struct formula {
|
|
int magic;
|
|
- int (*calculate) (number_t, number_t, number_t, number_t) REGISTERS(3);
|
|
+ int (*calculate) (number_t, number_t, number_t, number_t);
|
|
char *name[2];
|
|
vinfo v;
|
|
int mandelbrot;
|