mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 12:40:02 +00:00
ICU-2248 modularize ICU
X-SVN-Rev: 9944
This commit is contained in:
parent
34a5a089b9
commit
71f91f4357
1 changed files with 11 additions and 0 deletions
|
@ -25,6 +25,16 @@
|
|||
|
||||
#include "uprint.h"
|
||||
|
||||
#if UCONFIG_NO_FORMATTING
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
printf("%s: Sorry, UCONFIG_NO_FORMATTING was turned on (see uconfig.h). No formatting can be done. \n", argv[0]);
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
|
||||
|
||||
/* Protos */
|
||||
static void usage(void);
|
||||
static void version(void);
|
||||
|
@ -690,3 +700,4 @@ print_year(UCalendar *c,
|
|||
ucal_close(right_cal);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue