Fix include header syntax

This commit is contained in:
Paras Chetal 2017-06-09 04:45:38 +05:30
parent 77c6d8be6a
commit e9b8e5a4d1
No known key found for this signature in database
GPG Key ID: 0E12409536B3420B
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#include <unistd.h> #include <unistd.h>
#include <ioall.h> #include "ioall.h"
#include "libqubes-rpc-filecopy.h" #include "libqubes-rpc-filecopy.h"
#include "crc32.h" #include "crc32.h"

View File

@ -1,6 +1,5 @@
#define _GNU_SOURCE /* For O_NOFOLLOW. */ #define _GNU_SOURCE /* For O_NOFOLLOW. */
#include <errno.h> #include <errno.h>
#include <ioall.h>
#include <fcntl.h> #include <fcntl.h>
#include <sys/time.h> #include <sys/time.h>
#include <sys/stat.h> #include <sys/stat.h>
@ -10,6 +9,7 @@
#include <stdio.h> #include <stdio.h>
#include <limits.h> #include <limits.h>
#include "libqubes-rpc-filecopy.h" #include "libqubes-rpc-filecopy.h"
#include "ioall.h"
#include "crc32.h" #include "crc32.h"
char untrusted_namebuf[MAX_PATH_LENGTH]; char untrusted_namebuf[MAX_PATH_LENGTH];