blob: daad08908294dfc74b63b1baa482742427bcb820 [file] [log] [blame]
Copyright 2020 The Monogon Project Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
From 84404c50db8db114834d51be8cd5e706dcdb02ad Mon Sep 17 00:00:00 2001
From: Lorenz Brun <lorenz@nexantic.com>
Date: Tue, 9 Mar 2021 13:35:42 +0100
Subject: [PATCH] bazel_cc_fix patch
---
src/queue.c | 8 ++++----
src/register.c | 6 +++---
src/setup.c | 6 +++---
src/syscall.c | 4 ++--
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/src/queue.c b/src/queue.c
index 4bd4c48..e81a492 100644
--- a/src/queue.c
+++ b/src/queue.c
@@ -9,10 +9,10 @@
#include <string.h>
#include <stdbool.h>
-#include "liburing/compat.h"
-#include "liburing/io_uring.h"
-#include "liburing.h"
-#include "liburing/barrier.h"
+#include "src/include/liburing/compat.h"
+#include "src/include/liburing/io_uring.h"
+#include "src/include/liburing.h"
+#include "src/include/liburing/barrier.h"
#include "syscall.h"
diff --git a/src/register.c b/src/register.c
index 994aaff..87564f3 100644
--- a/src/register.c
+++ b/src/register.c
@@ -8,9 +8,9 @@
#include <errno.h>
#include <string.h>
-#include "liburing/compat.h"
-#include "liburing/io_uring.h"
-#include "liburing.h"
+#include "src/include/liburing/compat.h"
+#include "src/include/liburing/io_uring.h"
+#include "src/include/liburing.h"
#include "syscall.h"
diff --git a/src/setup.c b/src/setup.c
index 062eaa0..decd4f0 100644
--- a/src/setup.c
+++ b/src/setup.c
@@ -10,9 +10,9 @@
#include <stdlib.h>
#include <signal.h>
-#include "liburing/compat.h"
-#include "liburing/io_uring.h"
-#include "liburing.h"
+#include "src/include/liburing/compat.h"
+#include "src/include/liburing/io_uring.h"
+#include "src/include/liburing.h"
#include "syscall.h"
diff --git a/src/syscall.c b/src/syscall.c
index 2fd3dd4..3f57273 100644
--- a/src/syscall.c
+++ b/src/syscall.c
@@ -7,8 +7,8 @@
#include <unistd.h>
#include <sys/syscall.h>
#include <sys/uio.h>
-#include "liburing/compat.h"
-#include "liburing/io_uring.h"
+#include "src/include/liburing/compat.h"
+#include "src/include/liburing/io_uring.h"
#include "syscall.h"
#ifdef __alpha__
--
2.25.1