]> granicus.if.org Git - graphviz/commitdiff
mm2gv: make 'mm_get_type' static
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 8 Apr 2022 15:19:12 +0000 (08:19 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 11 Apr 2022 02:54:35 +0000 (19:54 -0700)
This function is unused outside of its containing file.

cmd/tools/matrix_market.c
cmd/tools/matrix_market.h

index d0dabf8271087881a9855b724ef62f09fb8621fa..e854d81550d845ec7046544b25d1be8e3ccbf80c 100644 (file)
@@ -16,7 +16,7 @@
 #define MALLOC gmalloc
 #define REALLOC grealloc
 
-int mm_get_type(MM_typecode typecode)
+static int mm_get_type(MM_typecode typecode)
 {
     if (mm_is_complex(typecode)) {
        return MATRIX_TYPE_COMPLEX;
index 0118ada0f582a0e6cd024fca76de6b1769f1ca92..1ce587f436d60175d02756064b7224078c9ebaab 100644 (file)
@@ -12,5 +12,4 @@
 
 #include "mmio.h"
 #include <sparse/SparseMatrix.h>
-int mm_get_type(MM_typecode typecode);
 SparseMatrix SparseMatrix_import_matrix_market(FILE * f, int format);