add another arch specific function for IRQ handling.
[AROS.git] / arch / all-mingw32 / hostlib / freeerrorstr.c
blob5666440bf2664d1c71de362d93c0e49a8d7d1c89
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/kernel.h>
7 #include <proto/exec.h>
9 #include "../kernel/hostinterface.h"
10 #include "hostlib_intern.h"
12 AROS_LH1(void, HostLib_FreeErrorStr,
13 AROS_LHA(char *, error, A0),
14 struct HostLibBase *, HostLibBase, 4, HostLib)
16 AROS_LIBFUNC_INIT
18 Forbid();
19 HostLibBase->HostIFace->hostlib_FreeErrorStr(error);
20 Permit();
22 AROS_LIBFUNC_EXIT