summaryrefslogtreecommitdiff
path: root/misc/unix/getopt.c
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-04-03 19:45:36 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-04-03 19:45:36 +0000
commitc22cf7f831deced25759629459531df54eeeb6c0 (patch)
treef9f6fabaabe2287e4b70fe884966bc4edc0e5278 /misc/unix/getopt.c
parentcda27b2fd17c50d05e3f589fc31db462bc9d0b8f (diff)
downloadlibapr-c22cf7f831deced25759629459531df54eeeb6c0.tar.gz
Finish the APR naming cleanup. This removes the struct's from
apr_variable declarations. This works on Unix, but a test compile on other platforms would be a good idea. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59773 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'misc/unix/getopt.c')
-rw-r--r--misc/unix/getopt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/unix/getopt.c b/misc/unix/getopt.c
index 49f6049b4..ab7dbeac9 100644
--- a/misc/unix/getopt.c
+++ b/misc/unix/getopt.c
@@ -60,7 +60,7 @@ char *ap_optarg = ""; /* argument associated with option */
* NOTE: Arguments 2 and 3 are most commonly argc and argv from
* main(argc, argv)
*/
-ap_status_t ap_getopt(ap_int32_t nargc, char *const *nargv, const char *ostr, ap_int32_t *rv, struct ap_context_t *cont)
+ap_status_t ap_getopt(ap_int32_t nargc, char *const *nargv, const char *ostr, ap_int32_t *rv, ap_context_t *cont)
{
char *p;
static char *place = EMSG; /* option letter processing */