Fixed a problem with trying to compile IntrinsicPrintFP when in NON_FP mode
git-svn-id: http://picoc.googlecode.com/svn/trunk@106 21eae674-98b7-11dd-bd71-f92a316d2d60
This commit is contained in:
parent
cf28c7513c
commit
38d9e18036
|
@ -36,6 +36,7 @@ void IntrinsicPrintInt(int Num, FILE *Stream)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef NO_FP
|
||||||
/* print a double to a stream without using printf/sprintf */
|
/* print a double to a stream without using printf/sprintf */
|
||||||
void IntrinsicPrintFP(double Num, FILE *Stream)
|
void IntrinsicPrintFP(double Num, FILE *Stream)
|
||||||
{
|
{
|
||||||
|
@ -58,6 +59,7 @@ void IntrinsicPrintFP(double Num, FILE *Stream)
|
||||||
IntrinsicPrintInt(Exponent, Stream);
|
IntrinsicPrintInt(Exponent, Stream);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/* intrinsic functions made available to the language */
|
/* intrinsic functions made available to the language */
|
||||||
void IntrinsicPrintInteger(struct Value *ReturnValue, struct Value **Param, int NumArgs)
|
void IntrinsicPrintInteger(struct Value *ReturnValue, struct Value **Param, int NumArgs)
|
||||||
|
|
Loading…
Reference in a new issue