summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/devctl/posix_devctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxhdrs/devctl/posix_devctl.c')
-rw-r--r--testsuites/psxtests/psxhdrs/devctl/posix_devctl.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/testsuites/psxtests/psxhdrs/devctl/posix_devctl.c b/testsuites/psxtests/psxhdrs/devctl/posix_devctl.c
new file mode 100644
index 0000000000..3a40c7869a
--- /dev/null
+++ b/testsuites/psxtests/psxhdrs/devctl/posix_devctl.c
@@ -0,0 +1,37 @@
+/*
+ * COPYRIGHT (c) 2016.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#define _POSIX_26_C_SOURCE
+
+#include <devctl.h>
+
+int test( void );
+
+int test( void )
+{
+ int result;
+ int fd;
+ int dcmd;
+ void *dev_data_ptr;
+ size_t nbyte;
+ int dev_info;
+
+ fd = -1;
+ dcmd = 0;
+ dev_data_ptr = NULL;
+ nbyte = 0;
+
+ result = posix_devctl(fd, dcmd, dev_data_ptr, nbyte, &dev_info);
+
+ return result;
+}