commit b3e483224020f2b1fa2eff554946d2ffa216004b (tree)
parent b8f85a805bf61ae11d6ee2bd6d8356fbc98ee3ba
Author: Michael Dusan <michael.dusan@gmail.com>
Date: Sun, 23 May 2021 19:40:31 -0400
housekeeping: remove `pub` from ccPrintFileName()
- this was inadvertently made public while iterating on #8730
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/libc_installation.zig b/src/libc_installation.zig
@@ -523,7 +523,7 @@ pub const CCPrintFileNameOptions = struct {
};
/// caller owns returned memory
-pub fn ccPrintFileName(args: CCPrintFileNameOptions) ![:0]u8 {
+fn ccPrintFileName(args: CCPrintFileNameOptions) ![:0]u8 {
const allocator = args.allocator;
const cc_exe = std.os.getenvZ("CC") orelse default_cc_exe;