1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

__infinity is not const.

This commit is contained in:
Jake Burkholder 2001-12-29 06:38:31 +00:00
parent c1682cb423
commit c5a29982d3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=88611

View File

@ -9,4 +9,4 @@ __FBSDID("$FreeBSD$");
#include <math.h>
/* bytes for +Infinity on a sparc */
const char __infinity[] = { 0x7f, (char)0xf0, 0, 0, 0, 0, 0, 0 };
char __infinity[] = { 0x7f, (char)0xf0, 0, 0, 0, 0, 0, 0 };