diff options
author | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2000-05-26 18:54:00 +0000 |
---|---|---|
committer | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2000-05-26 18:54:00 +0000 |
commit | 65586edfafbdda1b2060e0d964c5cf145d435e86 (patch) | |
tree | 0263aa4591b0d0efc4d940c3ce0885829d4cb38a /include | |
parent | 88bdbf339cc25c0b915a025cce1146a32b1a6775 (diff) | |
download | libapr-65586edfafbdda1b2060e0d964c5cf145d435e86.tar.gz |
PR:
Obtained from:
Submitted by:
Reviewed by:
Just a few functions missing linkage specs.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60103 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/apr_getopt.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/apr_getopt.h b/include/apr_getopt.h index e98d1e6da..e1ca57288 100644 --- a/include/apr_getopt.h +++ b/include/apr_getopt.h @@ -87,8 +87,9 @@ B<NOTE>: Arguments 2 and 3 are most commonly argc and argv from =cut */ -ap_status_t ap_getopt(ap_int32_t nargc, char *const *nargv, const char *ostr, - ap_int32_t *rv, ap_pool_t *cont); +APR_EXPORT(ap_status_t) ap_getopt(ap_int32_t nargc, char *const *nargv, + const char *ostr, ap_int32_t *rv, + ap_pool_t *cont); #endif /* ! APR_GETOPT_H */ |