diff options
| author | LemonBoy <thatlemon@gmail.com> | 2020-01-14 23:11:10 +0100 |
|---|---|---|
| committer | LemonBoy <thatlemon@gmail.com> | 2020-01-14 23:11:10 +0100 |
| commit | c85afff5a82c2d67d12a85723bb73ec5368bf590 (patch) | |
| tree | 054ef615f8e6fba78f56a8948040c8ac8f63f9b3 /lib/std/os/linux.zig | |
| parent | 49771f356fddda873405da2cc6aaffb2758abcbc (diff) | |
| download | zig-c85afff5a82c2d67d12a85723bb73ec5368bf590.tar.gz zig-c85afff5a82c2d67d12a85723bb73ec5368bf590.zip | |
Correct l_name field type
Diffstat (limited to 'lib/std/os/linux.zig')
| -rw-r--r-- | lib/std/os/linux.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/os/linux.zig b/lib/std/os/linux.zig index 94fad4cfb7..fcc1e62489 100644 --- a/lib/std/os/linux.zig +++ b/lib/std/os/linux.zig @@ -1042,7 +1042,7 @@ pub fn uname(uts: *utsname) usize { } // XXX: This should be weak -extern const __ehdr_start: elf.Ehdr = undefined; +extern const __ehdr_start: elf.Ehdr; pub fn dl_iterate_phdr(comptime T: type, callback: extern fn (info: *dl_phdr_info, size: usize, data: ?*T) i32, data: ?*T) isize { if (builtin.link_libc) { |
