Merge "libc: Fix headers to allow direct inclusion."
This commit is contained in:
commit
fabb4282be
@ -18,7 +18,9 @@
|
|||||||
#define __ANDROID_DLEXT_H__
|
#define __ANDROID_DLEXT_H__
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
#include <stdint.h>
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
|
#include <sys/types.h> /* for off64_t */
|
||||||
|
|
||||||
__BEGIN_DECLS
|
__BEGIN_DECLS
|
||||||
|
|
||||||
|
@ -35,6 +35,8 @@
|
|||||||
#ifndef _FTS_H_
|
#ifndef _FTS_H_
|
||||||
#define _FTS_H_
|
#define _FTS_H_
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
struct _ftsent *fts_cur; /* current node */
|
struct _ftsent *fts_cur; /* current node */
|
||||||
struct _ftsent *fts_child; /* linked list of children */
|
struct _ftsent *fts_child; /* linked list of children */
|
||||||
@ -111,8 +113,6 @@ typedef struct _ftsent {
|
|||||||
char fts_name[1]; /* file name */
|
char fts_name[1]; /* file name */
|
||||||
} FTSENT;
|
} FTSENT;
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
|
||||||
|
|
||||||
__BEGIN_DECLS
|
__BEGIN_DECLS
|
||||||
FTSENT *fts_children(FTS *, int);
|
FTSENT *fts_children(FTS *, int);
|
||||||
int fts_close(FTS *);
|
int fts_close(FTS *);
|
||||||
|
@ -31,6 +31,7 @@
|
|||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
#include <limits.h> /* For PAGE_SIZE. */
|
#include <limits.h> /* For PAGE_SIZE. */
|
||||||
|
#include <stddef.h> /* For size_t. */
|
||||||
|
|
||||||
__BEGIN_DECLS
|
__BEGIN_DECLS
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user