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
Raw Normal View History

2015-12-04 14:47:52 +00:00
/**
* Author......: See docs/credits.txt
2015-12-04 14:47:52 +00:00
* License.....: MIT
*/
#include "common.h"
#include "ext_ADL.h"
2015-12-04 14:47:52 +00:00
void *HC_API_CALL ADL_Main_Memory_Alloc (const int iSize)
{
return malloc ((size_t) iSize);
}