diff options
| author | 2025-10-09 14:05:54 +0200 | |
|---|---|---|
| committer | 2025-10-09 14:05:54 +0200 | |
| commit | 9df18e9b384a56902ef1517bc269b8c345149e12 (patch) | |
| tree | 9bea4f13167e2996813578a121bd4f4e8fde5290 /c.h | |
| parent | c1ab2a12cdaec4b701f2f9f994a174a6b838212c (diff) | |
c: call memset for some runtime zero initializations
Diffstat (limited to 'c.h')
| -rw-r--r-- | c.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -43,8 +43,7 @@ struct expr { }; struct init { - uint nzero; - struct bitset *zero; /* bytes to zero out */ + struct bitset zero[1]; /* bytes to zero out up to 64 */ struct initval { struct initval *next; uint off; |