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
|
Description: Fix implicit-function-declaration build errors
Author: Lance Lin <lq27267@gmail.com>
Last-Update: 2024-03-14
Forwarded: not-needed
--- a/src/HMMer2/prior.c
+++ b/src/HMMer2/prior.c
@@ -4,6 +4,7 @@
* Support for Dirichlet prior data structure, p7prior_s.
*/
+#include <string.h>
#include "config.h"
#include "structs.h"
#include "funcs.h"
--- a/src/external/mott/mott_api.c
+++ b/src/external/mott/mott_api.c
@@ -1,6 +1,8 @@
#include<stdio.h>
+#include<stdlib.h>
#include<limits.h>
#include<math.h>
+#include<ctype.h>
#include"gapstat.h"
double default_lambda0, default_K0, default_Kplus, default_H, default_r, default_s, default_alpha;
|