mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 12:29:35 +00:00
23 lines
406 B
Common Lisp
23 lines
406 B
Common Lisp
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#define XSTR(x) #x
|
|
#define STR(x) XSTR(x)
|
|
|
|
#ifdef KERNEL_STATIC
|
|
#include STR(INCLUDE_PATH/inc_vendor.h)
|
|
#include STR(INCLUDE_PATH/inc_types.h)
|
|
#include STR(INCLUDE_PATH/inc_platform.cl)
|
|
#include STR(INCLUDE_PATH/inc_common.cl)
|
|
#endif
|
|
|
|
KERNEL_FQ void m02000_mxx (KERN_ATTR_BASIC ())
|
|
{
|
|
}
|
|
|
|
KERNEL_FQ void m02000_sxx (KERN_ATTR_BASIC ())
|
|
{
|
|
}
|