Include strings.h for strcasecmp()

Fixes another build error on NetBSD.
This commit is contained in:
sin
2015-02-20 16:00:39 +00:00
parent b08bb6aad6
commit 71de7813c0
3 changed files with 3 additions and 0 deletions

1
grep.c
View File

@@ -3,6 +3,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include "queue.h"
#include "util.h"