ICU-348 fixed declarations.

X-SVN-Rev: 1229
This commit is contained in:
Yves Arrouye 2000-04-24 20:25:06 +00:00
parent c879203ab5
commit 322925133b
3 changed files with 5 additions and 5 deletions

View File

@ -86,7 +86,7 @@ static UOption options[]={
};
extern int
main(int argc, char *argv[]) {
main(int argc, const char *argv[]) {
static uint8_t buffer[4096];
char line[512];
const char *destdir = 0;

View File

@ -98,7 +98,7 @@ static UOption options[]={
};
extern int
main(int argc, char *argv[]) {
main(int argc, const char *argv[]) {
char line[512];
const char *path;
FileStream *in;

View File

@ -33,7 +33,7 @@
#include "uparse.h"
#include "genprops.h"
extern bool_t beVerbose=FALSE, haveCopyright=TRUE;
bool_t beVerbose=FALSE, haveCopyright=TRUE;
/* prototypes --------------------------------------------------------------- */
@ -206,7 +206,7 @@ parseMirror(const char *filename, UErrorCode *pErrorCode) {
/* parser for UnicodeData.txt ----------------------------------------------- */
/* general categories */
extern const char *const
const char *const
genCategoryNames[U_CHAR_CATEGORY_COUNT]={
NULL,
"Lu", "Ll", "Lt", "Lm", "Lo", "Mn", "Me",
@ -219,7 +219,7 @@ genCategoryNames[U_CHAR_CATEGORY_COUNT]={
"Cn"
};
extern const char *const
const char *const
bidiNames[U_CHAR_DIRECTION_COUNT]={
"L", "R", "EN", "ES", "ET", "AN", "CS", "B", "S",
"WS", "ON", "LRE", "LRO", "AL", "RLE", "RLO", "PDF", "NSM", "BN"