Commit 800056c6 authored by Stefan Fritsch's avatar Stefan Fritsch
Browse files

Use APR_INLINE instead of inline, to support pre-C99 compilers


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1140249 13f79535-47bb-0310-9956-ffa450edef68
parent fe03ef57
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -334,7 +334,7 @@ AP_DECLARE(int) ap_rwrite(const void *buf, int nbyte, request_rec *r);
 * @return The number of bytes sent
 * @note ap_rputs may be implemented as macro or inline function
 */
static inline int ap_rputs(const char *str, request_rec *r)
static APR_INLINE int ap_rputs(const char *str, request_rec *r)
{
    return ap_rwrite(str, strlen(str), r);
}