aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/posix/collate.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-02-13 05:43:42 -0500
committerMike Frysinger <vapier@gentoo.org>2022-02-18 18:40:57 -0500
commit56c65fb8d9c470c3a0a2ea43d353f3e961d0161e (patch)
tree24d645865910e4a15e7a3803511971b4159dd511 /newlib/libc/posix/collate.c
parentac9f8c46b1bc37df1a4209d9bff6e911f7d6b281 (diff)
downloadnewlib-56c65fb8d9c470c3a0a2ea43d353f3e961d0161e.zip
newlib-56c65fb8d9c470c3a0a2ea43d353f3e961d0161e.tar.gz
newlib-56c65fb8d9c470c3a0a2ea43d353f3e961d0161e.tar.bz2
newlib: posix: use local includes for local headers
These headers aren't installed, so use "" includes instead of <> so we don't search system header paths. This matches the style used elsewhere in the tree for these local headers, and makes it work w/out explicit -I flags (as needed with non-recursive make).
Diffstat (limited to 'newlib/libc/posix/collate.c')
-rw-r--r--newlib/libc/posix/collate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/posix/collate.c b/newlib/libc/posix/collate.c
index 8bb04ef..a2f62c9 100644
--- a/newlib/libc/posix/collate.c
+++ b/newlib/libc/posix/collate.c
@@ -28,13 +28,13 @@
#include <sys/cdefs.h>
#include "namespace.h"
-#include <rune.h>
+#include "rune.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
-#include <sysexits.h>
+#include "sysexits.h"
#include "un-namespace.h"
#include "collate.h"