1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: all functions need to be declared
Index: mpb-1.12.0/mpb/transform.c
===================================================================
--- mpb-1.12.0.orig/mpb/transform.c 2025-04-03 21:58:47.000000000 +0200
+++ mpb-1.12.0/mpb/transform.c 2025-08-11 13:43:06.051680625 +0200
@@ -19,6 +19,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
+#include <string.h>
#include "config.h"
#include <mpiglue.h>
@@ -207,4 +208,4 @@
symvals.items[ib] = compute_symmetry(ib+1, W, w);
}
return symvals;
-}
\ No newline at end of file
+}
|