zig/lib/std/os
Linus Groh 1a03b8c899 std.os.uefi: Fix two padding mistakes in the Time struct
```c
//************************************************
//EFI_TIME
//************************************************
// This represents the current time information
typedef struct {
   UINT16    Year;              // 1900 - 9999
   UINT8     Month;             // 1 - 12
   UINT8     Day;               // 1 - 31
   UINT8     Hour;              // 0 - 23
   UINT8     Minute;            // 0 - 59
   UINT8     Second;            // 0 - 59
   UINT8     Pad1;
   UINT32    Nanosecond;        // 0 - 999,999,999
   INT16     TimeZone;          // —1440 to 1440 or 2047
   UINT8     Daylight;
   UINT8     Pad2;
 }   EFI_TIME;
```
2025-03-02 23:16:34 +00:00
..
linux linux/IoUring: add register_files_sparse 2025-02-11 13:19:05 +03:00
plan9 extract std.posix from std.os 2024-03-19 11:45:09 -07:00
uefi std.os.uefi: Drop 'Efi' prefix from type names 2025-02-09 02:30:32 +00:00
windows std.time: more precise nanoTimestamp in windows 2025-02-13 16:55:58 +01:00
emscripten.zig all: update to std.builtin.Type.Pointer.Size field renames 2025-01-16 12:46:29 +00:00
linux.zig linux: add UDP socket options 2025-02-21 06:05:04 +01:00
plan9.zig runtime page size detection 2025-02-06 14:23:23 -08:00
uefi.zig std.os.uefi: Fix two padding mistakes in the Time struct 2025-03-02 23:16:34 +00:00
wasi.zig wasi: fix wasm-wasi-musl constants 2025-02-09 09:08:11 +01:00
windows.zig std.heap: remove HeapAllocator 2025-02-06 14:23:23 -08:00