function [varargout] = unloadlibrary(varargin)
%UNLOADLIBARY Unload a shared library loaded with LOADLIBRARY.
%   UNLOADLIBARY('LIBNAME') unloads the library LIBNAME that was
%   loaded with the LOADLIBRARY command.
%
%   See also LOADLIBRARY, LIBISLOADED.

%   Copyright 2002-2003 The MathWorks, Inc.
%   $Revision: 1.1.6.4 $  $Date: 2004/07/16 18:34:20 $

if nargout == 0
  builtin('unloadlibrary', varargin{:});
else
  [varargout{1:nargout}] = builtin('unloadlibrary', varargin{:});
end
