diff options
Diffstat (limited to 'locale/programs/localedef.h')
-rw-r--r-- | locale/programs/localedef.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/locale/programs/localedef.h b/locale/programs/localedef.h index 4f8a103fd9..ac25d979ac 100644 --- a/locale/programs/localedef.h +++ b/locale/programs/localedef.h @@ -1,5 +1,5 @@ /* General definitions for localedef(1). - Copyright (C) 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998. @@ -124,7 +124,8 @@ extern char *xstrdup (const char *__str); /* Mark given locale as to be read. */ extern struct localedef_t *add_to_readlist (int locale, const char *name, const char *repertoire_name, - int generate); + int generate, + struct localedef_t *copy_locale); /* Find the information for the locale NAME. */ extern struct localedef_t *find_locale (int locale, const char *name, @@ -134,6 +135,7 @@ extern struct localedef_t *find_locale (int locale, const char *name, /* Load (if necessary) the information for the locale NAME. */ extern struct localedef_t *load_locale (int locale, const char *name, const char *repertoire_name, - struct charmap_t *charmap); + struct charmap_t *charmap, + struct localedef_t *copy_locale); #endif /* localedef.h */ |