summaryrefslogblamecommitdiffstats
path: root/cpukit/libfs/src/defaults/default_fcntl.c
blob: a9d9995bc2d053d62394d48c0ebd0b4081772cca (plain) (tree)
1
2
3
4
5
6
7
8


        
                          

                                                  

   





                                                           
                                         



                         
                         

                                   

                     

 
           
 
/**
 * @file
 *
 * @ingroup LibIOFSHandler
 *
 * @brief RTEMS Default Filesystem - Default FCNTL
 */

/*
 *  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.org/license/LICENSE.
 */

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

int rtems_filesystem_default_fcntl(
  rtems_libio_t *iop,
  int cmd
)
{
  return 0;
}