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

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libgloss/libnosys/environ.c')
-rw-r--r--libgloss/libnosys/environ.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libgloss/libnosys/environ.c b/libgloss/libnosys/environ.c
new file mode 100644
index 000000000..b58250634
--- /dev/null
+++ b/libgloss/libnosys/environ.c
@@ -0,0 +1,6 @@
+/*
+ * Version of environ for no OS.
+ */
+
+char *__env[1] = { 0 };
+char **environ = __env;