source: rtems/cpukit/posix/src/devctl.c @ 874297f3

4.104.114.84.95
Last change on this file since 874297f3 was f42b726, checked in by Joel Sherrill <joel.sherrill@…>, on 01/24/01 at 14:17:28

2001-01-24 Ralf Corsepius <corsepiu@…>

  • configure.in: Add src/config.h
  • src/Makefile.am: Add INCLUDES += -I. to pickup config.h
  • src/.cvsignore: Add config.h and stamp-h
  • src/*.c: Add config.h support.
  • Property mode set to 100644
File size: 309 bytes
Line 
1/*
2 *  $Id$
3 */
4
5#if HAVE_CONFIG_H
6#include "config.h"
7#endif
8
9#include <devctl.h>
10
11#include <rtems/system.h>
12
13/*PAGE
14 *
15 *  21.2.1 Control a Device, P1003.4b/D8, p. 65
16 */
17
18int devctl(
19  int     filedes,
20  void   *dev_data_ptr,
21  size_t  nbyte,
22  int    *dev_info_ptr
23)
24{
25  return POSIX_NOT_IMPLEMENTED();
26}
Note: See TracBrowser for help on using the repository browser.