From 5e9b32b439627068a0292370fe595220dbfc95a0 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 26 Sep 1995 19:27:15 +0000 Subject: posix support initially added --- c/src/exec/posix/src/devctl.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 c/src/exec/posix/src/devctl.c (limited to 'c/src/exec/posix/src/devctl.c') diff --git a/c/src/exec/posix/src/devctl.c b/c/src/exec/posix/src/devctl.c new file mode 100644 index 0000000000..e4ff6d3cd8 --- /dev/null +++ b/c/src/exec/posix/src/devctl.c @@ -0,0 +1,24 @@ +/* devctl.c + * + */ + +#include + +#ifdef NOT_IMPLEMENTED_YET + +/*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(); +} + +#endif -- cgit v1.2.3