1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-13 03:19:00 +00:00
hashcat/src/ext_ADL.c

13 lines
206 B
C

/**
* 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);
}