Remove case sensitivity for libraries on windows

This commit is contained in:
Ginger Bill
2017-01-26 20:06:22 +00:00
parent e3e16f5d05
commit ce3582fd89
4 changed files with 31 additions and 32 deletions

View File

@@ -10,10 +10,6 @@
#import "utf8.odin";
main :: proc() {
fmt.println("GOOGOLPLEX");
}
/*
foo :: proc(x: ^i32) -> (int, int) {
fmt.println("^int");
return 123, cast(int)(x^);
@@ -56,4 +52,3 @@ main :: proc() {
f = foo;
f();
}
*/