Function setGnuLibCVersion [src]
Prototype
pub fn setGnuLibCVersion(self: *Query, major: u32, minor: u32, patch: u32) void
Parameters
self: *Query
major: u32
minor: u32
patch: u32
Source
pub fn setGnuLibCVersion(self: *Query, major: u32, minor: u32, patch: u32) void {
self.glibc_version = SemanticVersion{ .major = major, .minor = minor, .patch = patch };
}