1 //------------------------------------------------------------------------------
2 // gb_abort: terminate a GraphBLAS function
3 //------------------------------------------------------------------------------
4 
5 // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
6 // SPDX-License-Identifier: GPL-3.0-or-later
7 
8 //------------------------------------------------------------------------------
9 
10 #include "gb_matlab.h"
11 
gb_abort(void)12 void gb_abort ( void )      // failure
13 {
14     mexErrMsgIdAndTxt ("GraphBLAS:abort", "GraphBLAS failed") ;
15 }
16 
17