diff options
Diffstat (limited to 'hicn-light/src/content_store/listLRU.c')
-rw-r--r-- | hicn-light/src/content_store/listLRU.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hicn-light/src/content_store/listLRU.c b/hicn-light/src/content_store/listLRU.c index 42b491d7c..0a1631bab 100644 --- a/hicn-light/src/content_store/listLRU.c +++ b/hicn-light/src/content_store/listLRU.c @@ -13,10 +13,12 @@ * limitations under the License. */ +#ifndef _WIN32 +#include <sys/queue.h> +#endif #include <src/config.h> #include <stdbool.h> #include <stdio.h> -#include <sys/queue.h> #include <parc/algol/parc_Memory.h> #include <parc/assert/parc_Assert.h> |