blob: 8ca06dcef449b58a28aeeb589f8793d4414f8c5a (
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/common/lib/r_assoc.c
+++ b/common/lib/r_assoc.c
@@ -57,6 +57,7 @@
static char *RCSSTRING="$Id$";
#include <r_common.h>
+#include <string.h> /* memcpy() memcmp() */
#include "r_assoc.h"
typedef struct r_assoc_el_ {
--- a/common/lib/r_bitfield.c
+++ b/common/lib/r_bitfield.c
@@ -11,6 +11,7 @@
static char *RCSSTRING="$Id$";
#include <r_common.h>
+#include <string.h> /* memcpy() memset() */
#include "r_bitfield.h"
int r_bitfield_create(setp,size)
--- a/common/lib/r_data.c
+++ b/common/lib/r_data.c
@@ -47,6 +47,7 @@
static char *RCSSTRING="$Id$";
#include <r_common.h>
+#include <string.h> /* memcmp() memcpy() memset() */
#include <r_data.h>
int r_data_create(dp,d,l)
|