From b9d3b4b85abe1ffe0aeb513224555e0ba5ac50e9 Mon Sep 17 00:00:00 2001 From: twilen Date: Tue, 31 Jul 2012 11:37:51 +0000 Subject: [PATCH] Log not implemented message. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@45365 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- workbench/libs/mathieeedoubbas/ieeedpdiv.c | 4 ++++ workbench/libs/mathieeedoubbas/ieeedpmul.c | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/workbench/libs/mathieeedoubbas/ieeedpdiv.c b/workbench/libs/mathieeedoubbas/ieeedpdiv.c index c420dac2f9..62e0f8611e 100644 --- a/workbench/libs/mathieeedoubbas/ieeedpdiv.c +++ b/workbench/libs/mathieeedoubbas/ieeedpdiv.c @@ -3,6 +3,7 @@ $Id$ */ +#include #include "mathieeedoubbas_intern.h" /* @@ -53,6 +54,9 @@ AROS_LHQUAD2(double, IEEEDPDiv, #endif Res.i = 0x0badc0de0badc0deULL; + + aros_print_not_implemented("Software IEEEDPDiv"); + return Res.d; AROS_LIBFUNC_EXIT diff --git a/workbench/libs/mathieeedoubbas/ieeedpmul.c b/workbench/libs/mathieeedoubbas/ieeedpmul.c index 73bdec1cd6..007cea8b18 100644 --- a/workbench/libs/mathieeedoubbas/ieeedpmul.c +++ b/workbench/libs/mathieeedoubbas/ieeedpmul.c @@ -2,7 +2,7 @@ Copyright © 1995-2003, The AROS Development Team. All rights reserved. $Id$ */ - +#include #include "mathieeedoubbas_intern.h" /* @@ -41,7 +41,9 @@ AROS_LHQUAD2(double, IEEEDPMul, ) { AROS_LIBFUNC_INIT - + + aros_print_not_implemented("Software IEEEDPMul"); + return 0x0badc0de0badc0deULL; AROS_LIBFUNC_EXIT -- 2.11.4.GIT