Files
ports/misc/bb/files/patch-formulas.h
T
Robert Clausecker 5cc28c8ebd misc/bb: patch properly
- 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
2026-02-14 15:19:56 +01:00

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;