source: rtems/cpukit/posix/src/devctl.c @ f4719d5a

4.104.114.84.95
Last change on this file since f4719d5a was f4719d5a, checked in by Joel Sherrill <joel.sherrill@…>, on 05/22/96 at 22:32:39

These files have been modified in the initial pass at getting the portion
of the POSIX API necessary to support the GNAT runtime to initially compile.
We now have verified that the specifications for the necessary routines
are correct per the POSIX standards we have.

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