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

4.104.114.84.95
Last change on this file since 05195890 was eb5a7e07, checked in by Joel Sherrill <joel.sherrill@…>, on 10/06/95 at 20:48:38

fixed missing CVS IDs

  • Property mode set to 100644
File size: 284 bytes
Line 
1/* devctl.c
2 *
3 *  $Id$
4 */
5
6#include <devctl.h>
7
8#ifdef NOT_IMPLEMENTED_YET
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}
24
25#endif
Note: See TracBrowser for help on using the repository browser.