summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/exec/libcsupport/src/creat.c11
-rw-r--r--c/src/exec/libcsupport/src/isatty.c17
-rw-r--r--c/src/lib/libc/creat.c11
-rw-r--r--c/src/lib/libc/isatty.c17
-rw-r--r--cpukit/libcsupport/src/creat.c11
-rw-r--r--cpukit/libcsupport/src/isatty.c17
6 files changed, 84 insertions, 0 deletions
diff --git a/c/src/exec/libcsupport/src/creat.c b/c/src/exec/libcsupport/src/creat.c
new file mode 100644
index 0000000000..6b11162060
--- /dev/null
+++ b/c/src/exec/libcsupport/src/creat.c
@@ -0,0 +1,11 @@
+/* creat() "system call" */
+
+/* This is needed by f2c and therefore the SPEC benchmarks. */
+
+#include <fcntl.h>
+
+int
+creat (const char *path, mode_t mode)
+{
+ return open (path, O_WRONLY | O_CREAT | O_TRUNC, mode);
+}
diff --git a/c/src/exec/libcsupport/src/isatty.c b/c/src/exec/libcsupport/src/isatty.c
new file mode 100644
index 0000000000..3c64647a94
--- /dev/null
+++ b/c/src/exec/libcsupport/src/isatty.c
@@ -0,0 +1,17 @@
+/* isatty.c */
+
+/* Dumb implementation so programs will at least run. */
+
+#include <sys/stat.h>
+
+int
+isatty (int fd)
+{
+ struct stat buf;
+
+ if (fstat (fd, &buf) < 0)
+ return 0;
+ if (S_ISCHR (buf.st_mode))
+ return 1;
+ return 0;
+}
diff --git a/c/src/lib/libc/creat.c b/c/src/lib/libc/creat.c
new file mode 100644
index 0000000000..6b11162060
--- /dev/null
+++ b/c/src/lib/libc/creat.c
@@ -0,0 +1,11 @@
+/* creat() "system call" */
+
+/* This is needed by f2c and therefore the SPEC benchmarks. */
+
+#include <fcntl.h>
+
+int
+creat (const char *path, mode_t mode)
+{
+ return open (path, O_WRONLY | O_CREAT | O_TRUNC, mode);
+}
diff --git a/c/src/lib/libc/isatty.c b/c/src/lib/libc/isatty.c
new file mode 100644
index 0000000000..3c64647a94
--- /dev/null
+++ b/c/src/lib/libc/isatty.c
@@ -0,0 +1,17 @@
+/* isatty.c */
+
+/* Dumb implementation so programs will at least run. */
+
+#include <sys/stat.h>
+
+int
+isatty (int fd)
+{
+ struct stat buf;
+
+ if (fstat (fd, &buf) < 0)
+ return 0;
+ if (S_ISCHR (buf.st_mode))
+ return 1;
+ return 0;
+}
diff --git a/cpukit/libcsupport/src/creat.c b/cpukit/libcsupport/src/creat.c
new file mode 100644
index 0000000000..6b11162060
--- /dev/null
+++ b/cpukit/libcsupport/src/creat.c
@@ -0,0 +1,11 @@
+/* creat() "system call" */
+
+/* This is needed by f2c and therefore the SPEC benchmarks. */
+
+#include <fcntl.h>
+
+int
+creat (const char *path, mode_t mode)
+{
+ return open (path, O_WRONLY | O_CREAT | O_TRUNC, mode);
+}
diff --git a/cpukit/libcsupport/src/isatty.c b/cpukit/libcsupport/src/isatty.c
new file mode 100644
index 0000000000..3c64647a94
--- /dev/null
+++ b/cpukit/libcsupport/src/isatty.c
@@ -0,0 +1,17 @@
+/* isatty.c */
+
+/* Dumb implementation so programs will at least run. */
+
+#include <sys/stat.h>
+
+int
+isatty (int fd)
+{
+ struct stat buf;
+
+ if (fstat (fd, &buf) < 0)
+ return 0;
+ if (S_ISCHR (buf.st_mode))
+ return 1;
+ return 0;
+}