diff options
| author | Garrett Cox <garrettjcox@gmail.com> | 2024-01-10 02:29:06 +0000 |
|---|---|---|
| committer | Garrett Cox <garrettjcox@gmail.com> | 2024-05-22 09:04:57 -0500 |
| commit | d1cce09094d726ec17c964106cef2a68048804e8 (patch) | |
| tree | 6d88b52ee164a8a250d634a340e8825ae03aed58 /mm/src/boot/O2 | |
| parent | d46b3bc2fa129c9acdce5c863a8708c73a9460d7 (diff) | |
Adjustments to changes made for mac (#10)
Diffstat (limited to 'mm/src/boot/O2')
| -rw-r--r-- | mm/src/boot/O2/padutils.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mm/src/boot/O2/padutils.c b/mm/src/boot/O2/padutils.c index 197f23efb..f8bf98cbe 100644 --- a/mm/src/boot/O2/padutils.c +++ b/mm/src/boot/O2/padutils.c @@ -1,9 +1,8 @@ #include "padutils.h" -#include <strings.h> #include <ultratypes.h> void PadUtils_Init(Input* input) { - bzero(input, sizeof(Input)); + memset(input, 0, sizeof(Input)); } void func_80085150(void) { |
