Clean up tests

This commit is contained in:
jD91mZM2
2018-07-22 11:24:50 +02:00
parent e9484e4d60
commit 67d5976622
97 changed files with 84 additions and 84 deletions
+11
View File
@@ -0,0 +1,11 @@
#include <stdio.h>
#include <stdlib.h>
int main() {
//puts(getenv("SHELL"));
//puts(getenv("CC"));
putenv("TEST=It's working!!");
puts(getenv("TEST"));
}