[core] add missing includes to quiet compiler warn

add missing system includes to quiet compiler warnings on Mac OS X
This commit is contained in:
Glenn Strauss 2018-07-03 19:37:58 -04:00
parent ba5026aa7a
commit 5868b8ca12
2 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@
#include "log.h"
#include <errno.h>
#include <string.h>
const char *connection_get_state(connection_state_t state) {
switch (state) {

View File

@ -3,6 +3,7 @@
#include <assert.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "base.h"
#include "burl.h"