From: Ben Hyde Date: Wed, 6 Oct 1999 21:26:53 +0000 (+0000) Subject: Remove obsolete ap_util_init function. X-Git-Tag: 1.3.10~304 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e852186ad635b9219be90a67ad79bd682c28da8f;p=thirdparty%2Fapache%2Fhttpd.git Remove obsolete ap_util_init function. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83936 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/httpd.h b/include/httpd.h index 9e76702c957..9cfe705ac53 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -897,8 +897,6 @@ struct server_rec { /* Prototypes for utilities... util.c. */ -extern void ap_util_init(void); - /* Time */ extern API_VAR_EXPORT const char ap_month_snames[12][4]; extern API_VAR_EXPORT const char ap_day_snames[7][4]; diff --git a/server/main.c b/server/main.c index 5d1172650fa..60ee4e4a266 100644 --- a/server/main.c +++ b/server/main.c @@ -264,7 +264,6 @@ int main(int argc, char **argv) ap_server_argv0 = argv[0]; } - ap_util_init(); ap_util_uri_init(); ap_create_context(&pglobal, NULL); diff --git a/server/util.c b/server/util.c index 8bb2769a6f4..421db3fb07a 100644 --- a/server/util.c +++ b/server/util.c @@ -92,14 +92,6 @@ extern int fclose(FILE *); */ #define TEST_CHAR(c, f) (test_char_table[(unsigned)(c)] & (f)) -void ap_util_init(void) -{ - /* nothing to do... previously there was run-time initialization of - * test_char_table here - */ -} - - API_VAR_EXPORT const char ap_month_snames[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"