Handle IRQs inside the kernel
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m42s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m42s
This commit is contained in:
@@ -103,7 +103,7 @@
|
||||
/*! Modify the local functions below should you wish to use some other memory routines
|
||||
* for malloc(), free() */
|
||||
//@@ #include <stdlib.h>
|
||||
#include <mm/liballoc.h>
|
||||
#include <mm/malloc.h>
|
||||
static void* XXH_malloc (size_t s) { return malloc (s); }
|
||||
static void XXH_free (void* p) { free (p); }
|
||||
/*! and for memcpy() */
|
||||
|
||||
Reference in New Issue
Block a user