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

15 lines
247 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 "types.h"
#include "memory.h"
#include "ext_ADL.h"
2015-12-04 14:47:52 +00:00
void *HC_API_CALL ADL_Main_Memory_Alloc (const int iSize)
{
2016-09-30 16:09:29 +00:00
return mymalloc ((size_t) iSize);
}