Function addRPathSpecial [src]
Prototype
pub fn addRPathSpecial(m: *Module, bytes: []const u8) void
Parameters
m: *Module
bytes: []const u8
Source
pub fn addRPathSpecial(m: *Module, bytes: []const u8) void {
const b = m.owner;
m.rpaths.append(b.allocator, .{ .special = b.dupe(bytes) }) catch @panic("OOM");
}