summaryrefslogblamecommitdiffstats
path: root/cpukit/libfs/src/defaults/default_ioctl.c
blob: 307f350996633418ae2901bd04c2013b29d8705d (plain) (tree)





















                                                           
/*
 *  COPYRIGHT (c) 2010.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 *
 *  $Id$
 */

#include <rtems/libio.h>
#include <rtems/libio_.h>

int rtems_filesystem_default_ioctl(
  rtems_libio_t *iop,
  uint32_t       command,
  void          *buffer
)
{
  rtems_set_errno_and_return_minus_one( ENOTSUP );
}