]> git.proxmox.com Git - ceph.git/blob - ceph/src/civetweb/src/third_party/duktape-1.8.0/src-separate/duk_bi_thrower.c
buildsys: switch source download to quincy
[ceph.git] / ceph / src / civetweb / src / third_party / duktape-1.8.0 / src-separate / duk_bi_thrower.c
1 /*
2 * Type error thrower, E5 Section 13.2.3.
3 */
4
5 #include "duk_internal.h"
6
7 DUK_INTERNAL duk_ret_t duk_bi_type_error_thrower(duk_context *ctx) {
8 DUK_UNREF(ctx);
9 return DUK_RET_TYPE_ERROR;
10 }