mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-13 19:28:56 +00:00
13 lines
206 B
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);
|
|
}
|