]> granicus.if.org Git - graphviz/commitdiff
lu_solve: [nfc] squash -Wmissing-prototypes warning
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 27 Nov 2021 18:36:26 +0000 (10:36 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 3 Dec 2021 15:44:10 +0000 (07:44 -0800)
lib/neatogen/matinv.c
lib/neatogen/neato.h

index 570aefc85b58bdadcc1bd103e90f20e4dff17b3b..7f831376e864e5214d5d380c49acc9144eeda0ba 100644 (file)
@@ -36,7 +36,6 @@
 #include <neatogen/neato.h>
 
 extern int lu_decompose(double **a, int n);
-extern void lu_solve(double *x, double *b, int n);
 
 int matinv(double **A, double **Ainv, int n)
 {
index 909ca01651772e0f4aee0c8eda12d20e9e061a99..ad27f6b38125cda72841b0b9d327b6860fc16f55 100644 (file)
@@ -32,3 +32,5 @@
 #include       "pathplan.h"
 #include       <neatogen/neatoprocs.h>
 #include       <neatogen/adjust.h>
+
+void lu_solve(double *x, double *b, int n);