From cd32219c5b3c402c99d3ad7d1997d42b5f04015e Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Wed, 11 Jun 2014 13:20:18 -0700 Subject: [PATCH] Remove declarations related to cuserid(3). cuserid(3) was removed from POSIX 2004, and we don't have an implementation anyway. Bug: 13935372 Change-Id: I7ac7cde931ba802d0d5b917c22f5116618b21d2f --- libc/include/stdio.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/libc/include/stdio.h b/libc/include/stdio.h index 90f595c9e..efc549288 100644 --- a/libc/include/stdio.h +++ b/libc/include/stdio.h @@ -296,12 +296,10 @@ __END_DECLS */ #if __BSD_VISIBLE || __POSIX_VISIBLE || __XPG_VISIBLE #define L_ctermid 1024 /* size for ctermid(); PATH_MAX */ -#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 *);