From a99ac855da6f884b21925ee90d38fbde1b4ea5ab Mon Sep 17 00:00:00 2001 From: NicJA Date: Wed, 6 Jun 2018 01:35:03 +0000 Subject: [PATCH] add storage for the fpu private data used by softfloat implementations git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@55243 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- compiler/stdc/__stdc_intbase.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/compiler/stdc/__stdc_intbase.h b/compiler/stdc/__stdc_intbase.h index a420cc2b32..c8809d12f3 100644 --- a/compiler/stdc/__stdc_intbase.h +++ b/compiler/stdc/__stdc_intbase.h @@ -1,5 +1,5 @@ /* - Copyright © 2012-2013, The AROS Development Team. All rights reserved. + Copyright © 2012-2018, The AROS Development Team. All rights reserved. $Id$ This file defines the private part of StdCBase. @@ -53,6 +53,9 @@ struct StdCIntBase /* strtok.c */ char *last; + + /* private for softfloat implementations */ + APTR __fpu_private; }; /* Make a distinction between exit() and abort() */ -- 2.11.4.GIT