aboutsummaryrefslogtreecommitdiffstats
path: root/libc/include/getopt.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/include/getopt.h')
-rw-r--r--libc/include/getopt.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/libc/include/getopt.h b/libc/include/getopt.h
index c5a6106ba..46d2eb79c 100644
--- a/libc/include/getopt.h
+++ b/libc/include/getopt.h
@@ -59,8 +59,10 @@ struct option {
};
__BEGIN_DECLS
-int getopt_long(int __argc, char* const* __argv, const char* __options, const struct option* __long_options, int* __long_index);
-int getopt_long_only(int __argc, char* const* __argv, const char* __options, const struct option* __long_options, int* __long_index);
+int getopt_long(int, char * const *, const char *,
+ const struct option *, int *);
+int getopt_long_only(int, char * const *, const char *,
+ const struct option *, int *);
#ifndef _OPTRESET_DECLARED
#define _OPTRESET_DECLARED
@@ -68,4 +70,4 @@ extern int optreset; /* getopt(3) external variable */
#endif
__END_DECLS
-#endif
+#endif /* !_GETOPT_H_ */