From: Matthew Fernandez Date: Sat, 27 Nov 2021 18:36:26 +0000 (-0800) Subject: lu_solve: [nfc] squash -Wmissing-prototypes warning X-Git-Tag: 2.50.0~5^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8746af86e088a299081618e957c0aa9426bdce83;p=graphviz lu_solve: [nfc] squash -Wmissing-prototypes warning --- diff --git a/lib/neatogen/matinv.c b/lib/neatogen/matinv.c index 570aefc85..7f831376e 100644 --- a/lib/neatogen/matinv.c +++ b/lib/neatogen/matinv.c @@ -36,7 +36,6 @@ #include 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) { diff --git a/lib/neatogen/neato.h b/lib/neatogen/neato.h index 909ca0165..ad27f6b38 100644 --- a/lib/neatogen/neato.h +++ b/lib/neatogen/neato.h @@ -32,3 +32,5 @@ #include "pathplan.h" #include #include + +void lu_solve(double *x, double *b, int n);