Correct the name of 'modules' folder to 'libraries'

This commit is contained in:
Justin C. Miller
2018-05-22 10:15:43 -07:00
parent bc26d7d01d
commit 57829e1b79
13 changed files with 11 additions and 11 deletions

View File

@@ -0,0 +1,16 @@
#include "assert.h"
namespace kutil {
assert_callback __kernel_assert_p = nullptr;
assert_callback
assert_set_callback(assert_callback f)
{
assert_callback old = __kernel_assert_p;
__kernel_assert_p = f;
return old;
}
} // namespace kutil