mirror of
https://github.com/bitdefender/bddisasm.git
synced 2024-11-14 03:19:24 +00:00
pybddisasm: Don't implement nd_vsnprintf_s and nd_memset
This commit is contained in:
parent
e7803bdf72
commit
237e6ffb3e
@ -22,18 +22,3 @@ int nd_to_text(INSTRUX *instrux, size_t rip, size_t bufsize, char *buf)
|
||||
{
|
||||
return NdToText(instrux, rip, bufsize, buf);
|
||||
}
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
int
|
||||
nd_vsnprintf_s(char *str, size_t sizeOfBuffer, size_t count, const char *format, va_list args)
|
||||
{
|
||||
(void)(sizeOfBuffer);
|
||||
return vsnprintf(str, count, format, args);
|
||||
}
|
||||
|
||||
void *nd_memset(void *s, int c, size_t n)
|
||||
{
|
||||
return memset(s, c, n);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user