source: rtems/c/src/exec/posix/src/devctl.c @ 613cff6

4.104.114.84.95
Last change on this file since 613cff6 was 613cff6, checked in by Joel Sherrill <joel.sherrill@…>, on 05/29/96 at 16:54:52

removed all ifdef's on NOT_IMPLEMENTED.

  • Property mode set to 100644
File size: 275 bytes
Line 
1/* devctl.c
2 *
3 *  $Id$
4 */
5
6#include <devctl.h>
7
8#include <rtems/system.h>
9
10/*PAGE
11 *
12 *  21.2.1 Control a Device, P1003.4b/D8, p. 65
13 */
14
15int devctl(
16  int     filedes,
17  void   *dev_data_ptr,
18  size_t  nbyte,
19  int    *dev_info_ptr
20)
21{
22  return POSIX_NOT_IMPLEMENTED();
23}
Note: See TracBrowser for help on using the repository browser.