source: rtems/c/src/exec/posix/src/devctl.c @ 5e9b32b

4.104.114.84.95
Last change on this file since 5e9b32b was 5e9b32b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/26/95 at 19:27:15

posix support initially added

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