forked from Imagelibrary/rtems
23 lines
263 B
C
23 lines
263 B
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
#include <devctl.h>
|
|
|
|
#include <rtems/system.h>
|
|
|
|
/*PAGE
|
|
*
|
|
* 21.2.1 Control a Device, P1003.4b/D8, p. 65
|
|
*/
|
|
|
|
int devctl(
|
|
int filedes,
|
|
void *dev_data_ptr,
|
|
size_t nbyte,
|
|
int *dev_info_ptr
|
|
)
|
|
{
|
|
return POSIX_NOT_IMPLEMENTED();
|
|
}
|