Include what you use: <stdio.h> and <unistd.h>

These were transitively included, but no longer are, so they must be
explicitly included.

Exempt-From-Owner-Approval: Janitorial
Test: build
Change-Id: Ic0896401d148b22f33d6edb1fac377208e437565
This commit is contained in:
Tom Cherry 2020-04-13 15:21:09 -07:00
parent 0ebe6800bc
commit 24b31dced5
2 changed files with 3 additions and 0 deletions

View File

@ -18,8 +18,10 @@
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>
#include <stdio.h>
#include <string.h> #include <string.h>
#include <sys/epoll.h> #include <sys/epoll.h>
#include <unistd.h>
#include <log/log.h> #include <log/log.h>
#include "psi/psi.h" #include "psi/psi.h"

View File

@ -26,6 +26,7 @@
#include <string.h> #include <string.h>
#include <sys/uio.h> #include <sys/uio.h>
#include <time.h> #include <time.h>
#include <unistd.h>
#ifdef LMKD_LOG_STATS #ifdef LMKD_LOG_STATS