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:
parent
867c93c1b3
commit
500a2c4c59
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue