You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hashcat/src/ext_ADL.c

13 lines
206 B

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#include "common.h"
#include "ext_ADL.h"
void *HC_API_CALL ADL_Main_Memory_Alloc (const int iSize)
{
return malloc ((size_t) iSize);
}