From: André Malo Date: Thu, 7 Aug 2003 14:13:11 +0000 (+0000) Subject: fix extern "C" declaration X-Git-Tag: pre_ajp_proxy~1284 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=edb4d007fd474c3baa7efb82d3a30071cdfaa4ae;p=apache fix extern "C" declaration PR: 22203 Submitted by: Arno Bakker git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100928 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/util_ebcdic.h b/include/util_ebcdic.h index f7cca74398..5c7ba9ff83 100644 --- a/include/util_ebcdic.h +++ b/include/util_ebcdic.h @@ -104,10 +104,6 @@ void ap_xlate_proto_from_ascii(char *buffer, apr_size_t len); */ int ap_rvputs_proto_in_ascii(request_rec *r, ...); -#ifdef __cplusplus -} -#endif - #else /* APR_CHARSET_EBCDIC */ #define ap_xlate_proto_to_ascii(x,y) /* NOOP */ @@ -116,5 +112,9 @@ int ap_rvputs_proto_in_ascii(request_rec *r, ...); #define ap_rvputs_proto_in_ascii ap_rvputs #endif /* APR_CHARSET_EBCDIC */ - + +#ifdef __cplusplus +} +#endif + #endif /* !APACHE_UTIL_EBCDIC_H */