diff options
author | Elliott Hughes <enh@google.com> | 2016-06-09 15:16:32 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2016-06-09 15:16:32 -0700 |
commit | 20788aec002ab3f6dea4e01665a439933161d11c (patch) | |
tree | cb77d4d956f2377e762476a96cfe92b4dcaf6a94 /libc/include/stdio.h | |
parent | 70d99a1053542b8c062e6cb7eca2bcfb16c25d55 (diff) |
Add ctermid.
Change-Id: I7c7c815c2725df222932db923632c8b6419741ab
Diffstat (limited to 'libc/include/stdio.h')
-rw-r--r-- | libc/include/stdio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/include/stdio.h b/libc/include/stdio.h index 83ffc20ec..b92f5d5b3 100644 --- a/libc/include/stdio.h +++ b/libc/include/stdio.h @@ -226,6 +226,7 @@ int vsscanf(const char * __restrict, const char * __restrict, __va_list) */ #if __BSD_VISIBLE || __POSIX_VISIBLE || __XPG_VISIBLE #define L_ctermid 1024 /* size for ctermid(); PATH_MAX */ +char* ctermid(char*); FILE *fdopen(int, const char *); int fileno(FILE *); |