Updated PCI IDs to latest snapshot.
[tangerine.git] / workbench / libs / nonvolatile / freenvdata.c
blob325c762a6dad1325c0da4ce498b7f11884b12c60
1 /*
2 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 /*****************************************************************************
8 NAME */
10 #include <libraries/nonvolatile.h>
11 #include <proto/exec.h>
13 AROS_LH1(VOID, FreeNVData,
15 /* SYNOPSIS */
17 AROS_LHA(APTR, data, A0),
19 /* LOCATION */
21 struct Library *, nvBase, 6, Nonvolatile)
23 /* FUNCTION
25 Free data allocated by nonvolatile.library (GetCopyNV(), GetNVInfo(),
26 GetNVList()).
28 INPUTS
30 data -- data got from a nonvolatile.library function; may be NULL in
31 which case this function does nothing
33 RESULT
35 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
43 GetCopyNV(), GetNVInfo(), GetNVList()
45 INTERNALS
47 ******************************************************************************/
50 AROS_LIBFUNC_INIT
52 FreeVec(data);
54 AROS_LIBFUNC_EXIT
55 } /* FreeNVData */