summarylogtreecommitdiffstats
path: root/environ.c
diff options
context:
space:
mode:
Diffstat (limited to 'environ.c')
-rw-r--r--environ.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/environ.c b/environ.c
new file mode 100644
index 000000000000..3a33927b2f23
--- /dev/null
+++ b/environ.c
@@ -0,0 +1,8 @@
+__asm__ (
+ ".data" "\n\t"
+ ".weak _environ" "\n\t"
+ ".globl __environ" "\n\t"
+ "_environ:" "\n\t"
+ "__environ:" "\n\t"
+ ".long 0"
+);