mirror of
https://github.com/python/cpython.git
synced 2024-11-24 17:47:13 +01:00
6 lines
171 B
C
6 lines
171 B
C
|
#include <inttypes.h>
|
||
|
|
||
|
void Lib_Memzero0_memzero0(void *dst, uint64_t len);
|
||
|
|
||
|
#define Lib_Memzero0_memzero(dst, len, t, _ret_t) Lib_Memzero0_memzero0(dst, len * sizeof(t))
|