Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'support/stdio.c')
-rw-r--r--support/stdio.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/support/stdio.c b/support/stdio.c
new file mode 100644
index 00000000000..d4231259a51
--- /dev/null
+++ b/support/stdio.c
@@ -0,0 +1,32 @@
+/*
+ * <stdio.h> wrapper functions.
+ *
+ * Authors:
+ * Jonathan Pryor (jonpryor@vt.edu)
+ *
+ * Copyright (C) 2004 Jonathan Pryor
+ */
+
+#include <stdio.h>
+
+#include "mph.h"
+
+G_BEGIN_DECLS
+
+gint32
+Mono_Posix_Syscall_L_ctermid (void)
+{
+ return L_ctermid;
+}
+
+gint32
+Mono_Posix_Syscall_L_cuserid (void)
+{
+ return L_cuserid;
+}
+
+G_END_DECLS
+
+/*
+ * vim: noexpandtab
+ */