blob: ab4d2ea023f693baa2267e80b87b948966b0b530 (
plain)
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
|
Fix implicit declarations:
* daev.c: In function ‘processParameters’:
* daev.c:849:14: warning: implicit declaration of function ‘isdigit’ [-Wimplicit-function-declaration]
* if( !isdigit( argv[iarg][0] ) )
--- a/autoPhred.c
+++ b/autoPhred.c
@@ -57,6 +57,7 @@
static int xstrcmp();
#endif
+int freeMBRData( MBRData *mbrData );
#ifdef ANSI_C
int autoPhred( Option *option )
#else
--- a/daev.c
+++ b/daev.c
@@ -58,6 +58,7 @@
#include <sys/stat.h>
#include <time.h>
#include <math.h>
+#include <ctype.h>
#ifndef _WIN32
#include <dirent.h>
--- a/mergedBaseRead.c
+++ b/mergedBaseRead.c
@@ -63,7 +63,7 @@
Peak *peak;
Observed_peak *obs_peak;
- static initFlag = 0;
+ static int initFlag = 0;
static char mchar[256][256];
if( initFlag == 0 )
|