From 489bef2ace3c3c617f5bf78ded45a5b81fe2fd46 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Thu, 13 Aug 2020 13:48:50 -0400 Subject: add src/ to -I and exorcise ../ from #include --- src/unistd/write.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/unistd/write.c') diff --git a/src/unistd/write.c b/src/unistd/write.c index a58bdc78..1d95b807 100644 --- a/src/unistd/write.c +++ b/src/unistd/write.c @@ -1,8 +1,8 @@ #include "stddef.h" #include "sys/types.h" #include -#include "../_assert.h" -#include "../_syscall.h" +#include "_assert.h" +#include "_syscall.h" ssize_t write(int fildes, const void *buf, size_t nbyte) { -- cgit v1.2.1