summaryrefslogtreecommitdiff
path: root/rts/posix
diff options
context:
space:
mode:
authorAustin Seipp <austin@well-typed.com>2014-07-21 10:29:04 -0500
committerAustin Seipp <austin@well-typed.com>2014-07-28 09:29:12 -0500
commit426f2acaef9e9117c136126daa0923089260160a (patch)
treea699ebb66291ee27a2a3932c07ae7717652e4ec7 /rts/posix
parent34d7d2587e5e30d573e38a52cfaa811b2aa59f82 (diff)
downloadhaskell-426f2acaef9e9117c136126daa0923089260160a.tar.gz
rts: delint/detab/dewhitespace GetEnv.c
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'rts/posix')
-rw-r--r--rts/posix/GetEnv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/posix/GetEnv.c b/rts/posix/GetEnv.c
index 4d5c7e248e..e3f731cfed 100644
--- a/rts/posix/GetEnv.c
+++ b/rts/posix/GetEnv.c
@@ -32,7 +32,7 @@ static char** get_environ(void) { return environ; }
void getProgEnvv(int *out_envc, char **out_envv[]) {
int envc;
char **environ = get_environ();
-
+
for (envc = 0; environ[envc] != NULL; envc++) {};
*out_envc = envc;