aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2023-02-09 18:05:01 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2023-02-09 18:05:01 +0100
commit9153b4062c7b6db6119e035dc5e53184aac9fa3a (patch)
tree2c348cdc51f41fd17ff0c8e05139926470663076
parent42fda65969a1da58c0a8f074eb1f9eb3c5d4546b (diff)
remove io.h include in env.c used for debugging
-rw-r--r--lib/env/env.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/env/env.c b/lib/env/env.c
index 669527e..a458377 100644
--- a/lib/env/env.c
+++ b/lib/env/env.c
@@ -25,8 +25,6 @@ const char *getenv(const char *key)
return ++value;
}
-#include "../io/io.h"
-
void setenv(const char *key, const char *value)
{
char **p = __getenvpair(key);