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).
This commit is contained in:
parent
ac9f8c46b1
commit
56c65fb8d9
|
@ -28,13 +28,13 @@
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
|
|
||||||
#include "namespace.h"
|
#include "namespace.h"
|
||||||
#include <rune.h>
|
#include "rune.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <sysexits.h>
|
#include "sysexits.h"
|
||||||
#include "un-namespace.h"
|
#include "un-namespace.h"
|
||||||
|
|
||||||
#include "collate.h"
|
#include "collate.h"
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
#ifndef _RUNE_H_
|
#ifndef _RUNE_H_
|
||||||
#define _RUNE_H_
|
#define _RUNE_H_
|
||||||
|
|
||||||
#include <runetype.h>
|
#include "runetype.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#define _PATH_LOCALE "/usr/share/locale"
|
#define _PATH_LOCALE "/usr/share/locale"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <local.h>
|
#include "local.h"
|
||||||
|
|
||||||
/* Shared timezone information for libc/time functions. */
|
/* Shared timezone information for libc/time functions. */
|
||||||
static __tzinfo_type tzinfo = {1, 0,
|
static __tzinfo_type tzinfo = {1, 0,
|
||||||
|
|
Loading…
Reference in New Issue