1
1

Fix error: dereferencing pointer to incomplete type ‘struct timeval’

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
Reviewed-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Sahana Prasad <sahana@redhat.com>
Change-Id: I99d2016595966d805c9e27b5c2f2a0a5b4ad8611
Этот коммит содержится в:
Xiang Xiao 2021-05-09 07:45:03 -07:00 коммит произвёл Jakub Jelen
родитель aef467ab4a
Коммит 8ea7fc6129
3 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -29,6 +29,9 @@
#include <errno.h>
#include <time.h>
#include <stdbool.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif /* HAVE_SYS_TIME_H */
#ifndef _WIN32
#include <netinet/in.h>

Просмотреть файл

@ -29,6 +29,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif /* HAVE_SYS_TIME_H */
#include "libssh/libssh.h"
#include "libssh/misc.h"

Просмотреть файл

@ -32,6 +32,9 @@
#include <fcntl.h>
#include <stdio.h>
#include <stdint.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif /* HAVE_SYS_TIME_H */
#include <sys/types.h>
#include <sys/stat.h>
#include <limits.h>