summaryrefslogtreecommitdiff
blob: 79a585694ab0f0901321839a9de8a140b39ddd82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- a/decodeselfid.c
+++ b/decodeselfid.c
@@ -25,6 +25,8 @@
 
 #include "decodeselfid.h"
 
+#include <string.h>
+
 void printbin(FILE *stream, unsigned int i, unsigned char width) {
 	int j;
 	for (j=0; j<width; j++) {
--- a/fatal.c
+++ b/fatal.c
@@ -18,6 +18,8 @@
  */
 #include "fatal.h"
 
+#include <stdlib.h>
+
 void fatal(char *s) {
 	fprintf(stderr, "Error: %s\n", s);
 	exit(1);