aboutsummaryrefslogtreecommitdiff
path: root/std/test_runner_libc.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2016-08-16 22:42:50 -0700
committerAndrew Kelley <superjoe30@gmail.com>2016-08-16 22:42:50 -0700
commit37d167f6e0e26e8dc57950cb0fa1bfa630036521 (patch)
tree8b947d065ef12b189cb7a4c880c0009e7a6cd2b8 /std/test_runner_libc.zig
parent0ae9023832584e256aa3b6df0f0829026141d21a (diff)
downloadzig-37d167f6e0e26e8dc57950cb0fa1bfa630036521.tar.gz
zig-37d167f6e0e26e8dc57950cb0fa1bfa630036521.zip
std: conform to style guidelines
Diffstat (limited to 'std/test_runner_libc.zig')
-rw-r--r--std/test_runner_libc.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/test_runner_libc.zig b/std/test_runner_libc.zig
index ff39c3325c..bbd4f71d8b 100644
--- a/std/test_runner_libc.zig
+++ b/std/test_runner_libc.zig
@@ -1,6 +1,6 @@
const test_runner = @import("test_runner.zig");
export fn main(argc: c_int, argv: &&u8) -> c_int {
- test_runner.run_tests() %% return -1;
+ test_runner.runTests() %% return -1;
return 0;
}