blob: c34965bfe5e572a76774f8c2ecf53ea1998c8ab1 (
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
|
--- a/lib/nbbfi.c
+++ b/lib/nbbfi.c
@@ -197,6 +197,7 @@
*=============================================================================
*/
#include <nb/nbi.h>
+#include <ctype.h> /* isdigit() */
/**************************************************************************
* Index Routines
--- a/lib/nbkit.c
+++ b/lib/nbkit.c
@@ -51,6 +51,7 @@
#include <pwd.h>
#include <errno.h>
#include <unistd.h>
+#include <stdlib.h> /* system() */
static int nbKitUsage(void){
printf("Usage:\n");
--- a/module/webster/nb_webster.c
+++ b/module/webster/nb_webster.c
@@ -78,6 +78,7 @@
*/
#include "config.h"
#include <nb/nb.h>
+#include <ctype.h> /* isalnum() */
#if defined(WIN32)
|