Name function arguments in libc headers for Studio.
First batch of headers...
Bug: http://b/64613623
Test: builds
Change-Id: I6bc3ad79daa635456b61d03b1f43f06c433ec596
diff --git a/libc/include/utmp.h b/libc/include/utmp.h
index 62e8d59..6a52511 100644
--- a/libc/include/utmp.h
+++ b/libc/include/utmp.h
@@ -96,12 +96,12 @@
__BEGIN_DECLS
-int utmpname(const char*);
+int utmpname(const char* __path);
void setutent(void);
struct utmp* getutent(void);
void endutent(void);
-int login_tty(int) __INTRODUCED_IN(23);
+int login_tty(int __fd) __INTRODUCED_IN(23);
__END_DECLS