/* Attempts to flush the named library out of memory. */
#include <proto/exec.h>
#include <exec/execbase.h>
void FlushLibrary(STRPTR name)
{
struct Library *result;
Forbid();
result = (struct Library *)
FindName(&SysBase->LibList, name);
if (result != NULL)
Permit();
}