File: 19-fix-implicit-function-declaration.pach

package info (click to toggle)
mpb 1.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,040 kB
  • sloc: ansic: 13,389; javascript: 9,901; makefile: 214; lisp: 44; sh: 4
file content (20 lines) | stat: -rw-r--r-- 573 bytes parent folder | download
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
+}