Skip to content
Snippets Groups Projects
Commit 8fda89aa authored by Andre Maroneze's avatar Andre Maroneze Committed by Andre Maroneze
Browse files

[Libc] remove useless qualifier

parent 5d3974f4
No related branches found
No related tags found
No related merge requests found
......@@ -1532,13 +1532,13 @@ extern int __finite(double d);
ensures result_is_infinity: \is_plus_infinity(\result);
assigns \result \from \nothing;
@*/
extern const float __fc_infinity(int x);
extern float __fc_infinity(int x);
/*@
ensures result_is_nan: \is_NaN(\result);
assigns \result \from \nothing;
@*/
extern const float __fc_nan(int x);
extern float __fc_nan(int x);
#define INFINITY __fc_infinity(0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment