Argh - include strings.h

This commit is contained in:
sin 2014-11-21 00:02:09 +00:00
parent ce86a05f36
commit 875f433666
2 changed files with 2 additions and 0 deletions

1
grep.c
View File

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

View File

@ -21,6 +21,7 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <string.h> #include <string.h>
#include <strings.h>
#include "../util.h" #include "../util.h"