summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/envir.c
blob: a9489fe87f00c741c2bc26ae7ec1d36d1df1bb3b (plain)
1
2
3
4
5
6
7
8
9
#include <mlvalues.h>
#include <alloc.h>

extern char ** environ;

value unix_environment()
{
  return copy_string_array(environ);
}