From a6265c42b8377b20cf5f3eacb23f76da3751999f Mon Sep 17 00:00:00 2001 From: Markus Scherer Date: Tue, 20 Mar 2001 00:46:06 +0000 Subject: [PATCH] ICU-762 remove empty init() function X-SVN-Rev: 4188 --- icu4c/source/tools/genprops/genprops.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/icu4c/source/tools/genprops/genprops.c b/icu4c/source/tools/genprops/genprops.c index 9bd0fbf451f..653597f2719 100644 --- a/icu4c/source/tools/genprops/genprops.c +++ b/icu4c/source/tools/genprops/genprops.c @@ -40,9 +40,6 @@ UBool beVerbose=FALSE, haveCopyright=TRUE; /* prototypes --------------------------------------------------------------- */ -static void -init(void); - static void parseMirror(const char *filename, UErrorCode *pErrorCode); @@ -127,7 +124,6 @@ main(int argc, char* argv[]) { } /* initialize */ - init(); initStore(); /* process Mirror.txt */ @@ -187,10 +183,6 @@ main(int argc, char* argv[]) { return errorCode; } -static void -init(void) { -} - static const char * skipWhitespace(const char *s) { while(*s==' ' || *s=='\t') {