1 //------------------------------------------------------------------------------
2 // GB_mx_abort: terminate MATLAB
3 //------------------------------------------------------------------------------
4 
5 // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
6 // SPDX-License-Identifier: Apache-2.0
7 
8 //------------------------------------------------------------------------------
9 
10 #include "GB_mex.h"
11 
GB_mx_abort()12 void GB_mx_abort ( )                    // assertion failure
13 {
14     mexErrMsgIdAndTxt ("GraphBLAS:assert", "assertion failed") ;
15 }
16 
17