agent: Add include files.

* agent/command-ssh.c: Add sys/socket.h and sys/un.h.

Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
NIIBE Yutaka 2017-03-07 14:22:34 +09:00
parent f7f806afa5
commit bf03925751
1 changed files with 4 additions and 0 deletions

View File

@ -40,6 +40,10 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <assert.h>
#ifndef HAVE_W32_SYSTEM
#include <sys/socket.h>
#include <sys/un.h>
#endif /*!HAVE_W32_SYSTEM*/
#ifdef HAVE_UCRED_H
#include <ucred.h>
#endif