Skip to content

Commit

Permalink
xglobals: Provide memset for internal use
Browse files Browse the repository at this point in the history
  • Loading branch information
lhmouse committed Dec 11, 2024
1 parent 688a004 commit c1412ad
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mcfgthread/xglobals.c
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,12 @@ memcpy(void* dst, const void* src, size_t size)
return __MCF_mcopy(dst, src, size);
}

void*
memset(void* dst, int val, size_t size)
{
return __MCF_mfill(dst, val, size);
}

# if defined __i386__
extern const PVOID __safe_se_handler_table[];
extern const ULONG __safe_se_handler_count;
Expand Down

0 comments on commit c1412ad

Please sign in to comment.