src: add missing <string.h> includes

This commit is contained in:
Bert Belder 2018-05-03 14:11:44 +02:00
parent c3506ab046
commit 279315afcd
No known key found for this signature in database
GPG Key ID: 7A77887B2E2ED461
5 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#include <assert.h> #include <assert.h>
#include <malloc.h> #include <malloc.h>
#include <string.h>
#include "error.h" #include "error.h"
#include "poll-group.h" #include "poll-group.h"

View File

@ -1,6 +1,7 @@
#include <assert.h> #include <assert.h>
#include <malloc.h> #include <malloc.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h>
#include "error.h" #include "error.h"
#include "poll-group.h" #include "poll-group.h"

View File

@ -2,6 +2,7 @@
#include <malloc.h> #include <malloc.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
#include <string.h>
#include "afd.h" #include "afd.h"
#include "error.h" #include "error.h"

View File

@ -2,6 +2,7 @@
#include <stdint.h> #include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h>
#include "init.h" #include "init.h"
#include "test-util.h" #include "test-util.h"

View File

@ -2,6 +2,7 @@
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h>
#include "test-util.h" #include "test-util.h"
#include "wepoll.h" #include "wepoll.h"