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/bits/getopt.h b/libc/include/bits/getopt.h
index 7153d48..5481449 100644
--- a/libc/include/bits/getopt.h
+++ b/libc/include/bits/getopt.h
@@ -33,9 +33,9 @@
__BEGIN_DECLS
-int getopt(int, char * const [], const char *);
+int getopt(int __argc, char* const __argv[], const char* __options);
-extern char *optarg; /* getopt(3) external variables */
+extern char* optarg;
extern int optind, opterr, optopt;
__END_DECLS