blob: 1b5b93a4e665109773cd31eab8418d44bab1a790 [file] [log] [blame]
From 2b9be924bbad8a1f84ae553fdd1aa8391aa8d2f4 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Thu, 7 Jan 2016 20:15:07 +0000
Subject: [PATCH 16/32] ustat: Change header from ustat.h to sys/ustat.h
makes it portable for musl, on glibc ustat.h is just including
sys/ustat.h too
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
testcases/kernel/syscalls/ustat/ustat01.c | 2 +-
testcases/kernel/syscalls/ustat/ustat02.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/testcases/kernel/syscalls/ustat/ustat01.c b/testcases/kernel/syscalls/ustat/ustat01.c
index 01b7688..494647b 100644
--- a/testcases/kernel/syscalls/ustat/ustat01.c
+++ b/testcases/kernel/syscalls/ustat/ustat01.c
@@ -20,8 +20,8 @@
*/
#include <unistd.h>
-#include <ustat.h>
#include <errno.h>
+#include <sys/ustat.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "test.h"
diff --git a/testcases/kernel/syscalls/ustat/ustat02.c b/testcases/kernel/syscalls/ustat/ustat02.c
index 4e66236..edada31 100644
--- a/testcases/kernel/syscalls/ustat/ustat02.c
+++ b/testcases/kernel/syscalls/ustat/ustat02.c
@@ -21,8 +21,8 @@
*/
#include <unistd.h>
-#include <ustat.h>
#include <errno.h>
+#include <sys/ustat.h>
#include <sys/stat.h>
#include <sys/types.h>
#include "test.h"
--
2.7.0