source: rtems/cpukit/posix/include/devctl.h @ f4719d5a

4.104.114.84.95
Last change on this file since f4719d5a 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: 407 bytes
Line 
1/* devctl.h
2 *
3 *  $Id$
4 */
5
6#ifndef __POSIX_DEVICE_CONTROL_h
7#define __POSIX_DEVICE_CONTROL_h
8
9#include <rtems/posix/features.h>
10
11#if defined(_POSIX_DEVICE_CONTROL)
12
13#include <sys/types.h>
14#include <unistd.h>
15
16/*
17 *  21.2.1 Control a Device, P1003.4b/D8, p. 65
18 */
19
20int devctl(
21  int     filedes,
22  void   *dev_data_ptr,
23  size_t  nbyte,
24  int    *dev_info_ptr
25);
26
27#endif
28
29#endif
30/* end of include file */
Note: See TracBrowser for help on using the repository browser.