Fix broken ifdef, not sure why it was breaking it

Probably some historical reasons. When like this, it works with current GCC
This commit is contained in:
Felisp 2023-11-23 00:38:42 +01:00
parent 867c93c1b3
commit 500a2c4c59

View file

@ -60,7 +60,7 @@ typedef struct {
#define max(x,y) (((x) > (y)) ? (x) : (y))
#define min(x,y) (((x) < (y)) ? (x) : (y))
#ifndef __GNUC__
#ifdef __GNUC__
double fsqr (double x);
int lsqr (int x);