/****************************************************************************
 *
 * $Source: /usr/local/cvsroot/gccsdk/unixlib/source/sys/mount.c,v $
 * $Date: 2005/04/07 18:34:11 $
 * $Revision: 1.2 $
 * $State: Exp $
 * $Author: nick $
 *
 ***************************************************************************/

#ifdef EMBED_RCSID
static const char rcs_id[] = "$Id: mount.c,v 1.2 2005/04/07 18:34:11 nick Exp $";
#endif

#include <sys/mount.h>
#include <errno.h>



extern int
mount (__const char *__special_file, __const char *__dir,
       __const char *__fstype, unsigned long int __rwflag,
      __const void *__data)
{
  return __set_errno (ENOSYS);
}


extern int
umount (__const char *__special_file)
{
  return __set_errno (ENOSYS);
}


extern int
umount2 (__const char *__special_file, int __flags)
{
  return __set_errno (ENOSYS);
}

