revert between 56095 -> 55830 in arch
[AROS.git] / arch / all-hosted / hostlib / dropinterface.c
blob13f01c98b7c42ed4371ac3ecee973586234e9f26
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <proto/exec.h>
8 /*****************************************************************************
10 NAME */
11 #include <proto/hostlib.h>
13 AROS_LH1I(void, HostLib_DropInterface,
15 /* SYNOPSIS */
16 AROS_LHA(APTR *, interface, A0),
18 /* LOCATION */
19 APTR , HostLibBase, 6, HostLib)
21 /* FUNCTION
22 Free an array of symbol values obtained by HostLib_GetInterface()
24 INPUTS
25 interface - A pointer to values array
27 RESULT
28 None
30 NOTES
31 This function appeared in v2 of hostlib.resource.
33 EXAMPLE
35 BUGS
37 SEE ALSO
38 HostLib_GetInterface()
40 INTERNALS
42 *****************************************************************************/
44 AROS_LIBFUNC_INIT
46 FreeVec(interface);
48 AROS_LIBFUNC_EXIT