From 5a1e90ba779d01dd829bb5463fba69e34136ebba Mon Sep 17 00:00:00 2001 From: Daniel Reinhold Date: Sat, 26 Oct 2002 20:38:10 +0000 Subject: [PATCH] defines an internal global variable required for linking git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1695 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/libroot/posix/math/math_globals.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/kernel/libroot/posix/math/math_globals.c diff --git a/src/kernel/libroot/posix/math/math_globals.c b/src/kernel/libroot/posix/math/math_globals.c new file mode 100644 index 0000000000..ee274f3122 --- /dev/null +++ b/src/kernel/libroot/posix/math/math_globals.c @@ -0,0 +1,11 @@ +/* + * Global variable(s) used in the math library + */ + + +// this declaration is just a guess... +// it "seems" to be what is required, but I would need to run some tests +// to see if code that links to this variable actually works as expected. +// -- Daniel Reinhold, 26 Oct 2002 + +char __infinity[sizeof(double)];