mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
13 lines
243 B
C
13 lines
243 B
C
/*
|
|
* duk_hbuffer assertion helpers
|
|
*/
|
|
|
|
#include "third_party/duktape/duk_internal.h"
|
|
|
|
#if defined(DUK_USE_ASSERTIONS)
|
|
|
|
DUK_INTERNAL void duk_hbuffer_assert_valid(duk_hbuffer *h) {
|
|
DUK_ASSERT(h != NULL);
|
|
}
|
|
|
|
#endif /* DUK_USE_ASSERTIONS */
|