blob: 3359ec1a61c7d56ac000316287f3a21e1a68f418 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
diff --git a/src/list.h b/src/list.h
index 1453b66..6874454 100644
--- a/src/list.h
+++ b/src/list.h
@@ -21,6 +21,7 @@
#ifndef _PAC_LIST_H
#define _PAC_LIST_H
+#include <limits.h>
#define FREELIST(p) { list_free(p); p = NULL; }
/* your average linked list */
|