File: fix_missing_header.patch

package info (click to toggle)
ampliconnoise 1.29-16
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,316 kB
  • sloc: ansic: 18,085; sh: 2,901; perl: 2,089; makefile: 240
file content (54 lines) | stat: -rw-r--r-- 1,197 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Description: Add missing header file
 The package is orphaned upstream, hence not forwarded.
Bug-Debian: https://bugs.debian.org/1066300
Author: Andreas Tille <tille@debian.org>
Last-Update: 2024-04-11
Forwarded: no

--- a/NDist/NDist.c
+++ b/NDist/NDist.c
@@ -10,6 +10,7 @@ Output has been verified to be unaffecte
 #include <string.h>
 #include <float.h>
 #include <assert.h>
+#include <ctype.h>
 #include <math.h>
 #include <mpi.h>
 
--- a/SeqDist/SeqDist.c
+++ b/SeqDist/SeqDist.c
@@ -10,6 +10,7 @@
 #include <string.h>
 #include <float.h>
 #include <assert.h>
+#include <ctype.h>
 #include <math.h>
 #include <mpi.h>
 
--- a/SeqNoise/SeqNoise.c
+++ b/SeqNoise/SeqNoise.c
@@ -1,3 +1,4 @@
+#include <ctype.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
--- a/Perseus/Perseus.c
+++ b/Perseus/Perseus.c
@@ -8,6 +8,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <ctype.h>
 #include <float.h>
 #include <assert.h>
 #include <math.h>
--- a/PerseusD/PerseusD.c
+++ b/PerseusD/PerseusD.c
@@ -8,6 +8,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <ctype.h>
 #include <float.h>
 #include <assert.h>
 #include <math.h>