Commit 56db883b authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  When is a void fn(void) not a void fn(void)?  It's a win32'ism, since
  the APR_DECLARE (excluding _NONSTD) uses the pascal convention.  Really
  irrelevant in a function that never needs to clean up (atexit), but
  the compiler complains.  Possible workarounds, but that would break
  non-c lanaguge code from linking into apr.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87726 13f79535-47bb-0310-9956-ffa450edef68
parent 2489a7a0
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -903,14 +903,14 @@ static void test(void)
static void copyright(void)
{
    if (!use_html) {
        printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.50 $> apache-2.0");
        printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.51 $> apache-2.0");
        printf("Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n");
        printf("Copyright (c) 1998-2000 The Apache Software Foundation, http://www.apache.org/\n");
        printf("\n");
    }
    else {
        printf("<p>\n");
        printf(" This is ApacheBench, Version %s <i>&lt;%s&gt;</i> apache-2.0<br>\n", AB_VERSION, "$Revision: 1.50 $");
        printf(" This is ApacheBench, Version %s <i>&lt;%s&gt;</i> apache-2.0<br>\n", AB_VERSION, "$Revision: 1.51 $");
        printf(" Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/<br>\n");
        printf(" Copyright (c) 1998-2000 The Apache Software Foundation, http://www.apache.org/<br>\n");
        printf("</p>\n<p>\n");
@@ -1025,6 +1025,11 @@ static int open_postfile(const char *pfile)
    return 0;
}

static void terminate(void)
{
    apr_terminate();
}

/* ------------------------------------------------------- */

/* sort out command-line args and call test */
@@ -1046,7 +1051,7 @@ int main(int argc, const char * const argv[])
    hdrs[0] = '\0';

    apr_initialize();
    atexit(apr_terminate);
    atexit(terminate);
    apr_create_pool(&cntxt, NULL);

#ifdef NOT_ASCII
+6 −1
Original line number Diff line number Diff line
@@ -215,6 +215,11 @@ static void interrupted(void)
    exit(1);
}

static void terminate(void)
{
    apr_terminate();
}

int main(int argc, char *argv[])
{
    apr_file_t *tfp = NULL, *f;
@@ -234,7 +239,7 @@ int main(int argc, char *argv[])
                apr_strerror(rv, line, sizeof(line)), rv);
        exit(1);
    }
    atexit(apr_terminate); 
    atexit(terminate); 
    apr_create_pool(&cntxt, NULL);

#if APR_CHARSET_EBCDIC