housekeeping: remove pub from ccPrintFileName()

- this was inadvertently made public while iterating on #8730
This commit is contained in:
Michael Dusan 2021-05-23 19:40:31 -04:00 committed by Andrew Kelley
parent b8f85a805b
commit b3e4832240

View File

@ -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;