diff options
author | David 'Digit' Turner <digit@google.com> | 2010-10-09 17:56:55 +0200 |
---|---|---|
committer | David 'Digit' Turner <digit@google.com> | 2010-10-09 17:56:55 +0200 |
commit | bb5581ad6eec40041dab4e961149f7a8a3a83497 (patch) | |
tree | 5e8c1e583da643c37143adff205c6d794a0850c5 /libc/include/stdio.h | |
parent | af00228b705b53165c132a22b30c2d6cbb9acd13 (diff) | |
download | bionic-bb5581ad6eec40041dab4e961149f7a8a3a83497.zip bionic-bb5581ad6eec40041dab4e961149f7a8a3a83497.tar.gz bionic-bb5581ad6eec40041dab4e961149f7a8a3a83497.tar.bz2 |
libc: tag missing functions in system headers.
This matches recent changes in the NDK header.
We enclose missing functions in #if 0 .. #endif blocks
with a clear "MISSING" in comments in order to locate
them later.
Change-Id: I87b3a62e777897e75c9243360fb0a82bcc53d9fb
Diffstat (limited to 'libc/include/stdio.h')
-rw-r--r-- | libc/include/stdio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/include/stdio.h b/libc/include/stdio.h index d164e95..c38ed5a 100644 --- a/libc/include/stdio.h +++ b/libc/include/stdio.h @@ -300,8 +300,10 @@ __END_DECLS #define L_cuserid 9 /* size for cuserid(); UT_NAMESIZE + 1 */ __BEGIN_DECLS +#if 0 /* MISSING FROM BIONIC */ char *ctermid(char *); char *cuserid(char *); +#endif /* MISSING */ FILE *fdopen(int, const char *); int fileno(FILE *); |