jdolecek
09f91c86b6
Add czech language message catalog
1999-09-26 20:27:59 +00:00
lukem
b48252f365
* use _DIAGASSERT() to check pointer arguments against NULL and file
...
descriptors against -1 (as appropriate).
* add actual checks which to detect stuff that would trigger_DIAGASSERT(),
and attempt to return a sane error condition.
* knf some code
* remove some `register' decls.
the first two items result in the addition of code similar to the
following in various functions:
_DIAGASSERT(path != NULL)
#ifdef _DIAGNOSTIC
if (path == NULL) {
errno = EFAULT;
return (-1);
}
#endif
1999-09-16 11:44:54 +00:00
mycroft
9f5f4ac699
Make some needed weak aliases.
1999-08-17 03:58:39 +00:00
kleink
4d282292e2
Introduce EOVERFLOW.
1999-03-22 19:03:38 +00:00
christos
38676913cd
delint
1998-11-15 17:39:20 +00:00
is
d7f38fa713
clean up a bit more
1998-07-26 18:55:09 +00:00
mycroft
4462053ab3
Fill in missing (default) mmap(2) flags.
1998-02-20 09:27:18 +00:00
bouyer
6c7aa44018
Add EAUTH, ENEEDAUTH, EIDRM and ENOMSG.
1998-02-16 14:30:36 +00:00
kleink
1fc029a47c
Sync with <nl_types.h>: const'ify the `s' argument.
1998-02-08 19:54:54 +00:00
kleink
f0be96e51b
Per XPG4.2, set errno to ENOMSG to indicate that the requested message could
...
not be found in the catalog. Bump the date.
1998-02-08 19:45:22 +00:00
kleink
c06a85e453
Per XPG4.2, set errno to ENOMSG to indicate that the requested message could
...
not be found in the catalog.
1998-02-08 19:42:59 +00:00
kleink
cc3aa14290
Add EAUTH, ENEEDAUTH, EIDRM and ENOMSG.
1998-02-08 19:21:12 +00:00
kleink
014cb94529
Add ENOMSG.
1998-02-08 19:15:44 +00:00
mikel
a85dc86483
added messages for EAUTH, ENEEDAUTH, and EIDRM
1998-02-06 08:55:23 +00:00
mikel
fff4d1182d
add EAUTH, ENEEDAUTH, EIDRM
1998-02-06 08:44:21 +00:00
perry
312aca536f
add LIBRARY section to man page
1998-02-05 18:45:17 +00:00
thorpej
2a43f22095
__warn_references and __indr_reference semicolon fixups. From
...
Chris Demetriou <cgd@pa.dec.com>.
1997-11-04 23:52:05 +00:00
jtc
87f4ccd45f
Fix files using old TNF copyright notice
1997-07-30 22:53:50 +00:00
thorpej
479b2bfa75
XXX KLUDGE! Duplicate the namespace-clean prototype for architectures
...
that lack __indr_reference(), so that this can be built with WARNS=1.
1997-07-17 18:30:09 +00:00
christos
4515f6e82b
Use "namespace.h"
...
Fix RCSID's
1997-07-13 19:58:34 +00:00
mikel
109d917438
avoid unportable arithmetic on void pointers
1997-06-19 07:41:32 +00:00
ragge
7196037f1c
Svensk meddelandekatalog, ursprungligen skriven av Martin Kullberg.
...
(frolix@ludd.luth.se )
1997-04-28 21:36:45 +00:00
is
03a704030c
Added Norwegian libc error messages/signal names, donated by Stig
...
Venaas <venaas@nvg.ntnu.no>.
1997-04-28 08:49:31 +00:00
is
973c5ca8b5
Corrected ETOOMANYREFS message, provided by Matthieu Herb.
1997-04-28 08:36:21 +00:00
is
5b3e1d439a
"Slice" does not translate to "splitten".
1997-04-27 18:30:30 +00:00
pk
7b2c0237ea
Dutch catalog
1997-04-26 22:50:36 +00:00
pk
1b12ce1554
Zwei tastatur ausrutscher corrigiert..
1997-04-26 22:26:59 +00:00
mrg
071eac5167
KNF.
1997-04-22 12:27:34 +00:00
is
9659f9a2a0
Finnish libc error message/signal name catalog, by Jukka Marin and coworker.
1997-04-17 18:12:47 +00:00
hpeyerl
37c622153f
Remove as per discussion with core.
1997-03-10 20:51:01 +00:00
perry
59e4dfa599
polish
1997-03-10 20:50:39 +00:00
perry
e1f7d360a1
Initial cut of Canadian national language support
1997-03-10 20:17:43 +00:00
hpeyerl
7cfeaf46a0
Color me bored.
1997-03-10 19:07:19 +00:00
jtc
bf5c90d5f9
merge in 1.2 branch
1996-10-09 01:46:13 +00:00
jtc
3a375fb249
Merged in changes from branch (make sure all memory, file descriptors,
...
mappings, etc. are freed and return (nl_catd) -1 on error). Also fix
one minor bug and clean up NLSPATH parsing a bit more.
1996-06-21 06:21:04 +00:00
jtc
749fcbc59b
Ensure user can't make us overrun fixed sized buffers.
1996-06-20 18:47:08 +00:00
jtc
c40394d175
Fix NLSPATH processing --- catopen was not processing beyond the first
...
colon. Try all paths in NLSPATH as per XPG4.2. Expand %l, %t, and %c
to nothing. Should be language, territory, and codeset.
1996-06-20 14:54:38 +00:00
cgd
11f862a975
last argument to catgets()/_catgets() is 'const char *', not 'char *'
1996-05-16 21:51:22 +00:00
jtc
adfd5ba766
New message catalog implementation that uses a more efficient machine
...
independent external format. The new format is like what is used on
svr4 systems, except it uses fixed sized fields and a constant byte
order.
1996-05-13 23:29:32 +00:00
jtc
e522ca37ad
Changed _catopen() to always return ((nl_catd) -1) on error, and
...
changed _catgets() and _catclose() to special case catd's == -1.
This change fixes PR#2190, and brings _cat*() closer to XPG4.2
compliance.
1996-03-22 01:11:49 +00:00
jtc
c47925a6fb
Added spanish language message catalog from Jesus M. Gonzalez <jgb@ordago.uc3m.es>
1995-11-23 02:20:59 +00:00
jtc
aa9022195f
Add French libc message catalog by Matthieu Herrb <matthieu@abel.laas.fr>
1995-10-09 03:58:02 +00:00
jtc
f860fa6ee0
Add german libc message catalog
1995-10-02 20:54:45 +00:00
jtc
9ae90685f2
Winning Strategies has placed this code in the public domain.
1995-05-11 23:03:44 +00:00
jtc
0e315a5455
C and Pig Latin message catalogs for libc
1995-05-02 19:56:27 +00:00
jtc
f86410093b
Changed name of __weak_reference() to __indr_reference(). They really
...
are indirect references, and I want to add a real __weak_reference()
macro to <machine/cdefs.h> soon.
1995-03-23 19:58:48 +00:00
jtc
3f10e2da9c
catclose returns int
1995-03-01 08:00:12 +00:00
cgd
7ce7ea9415
fix Ids
1995-02-27 13:06:20 +00:00
cgd
a05aca32f7
clear up type inconsistency.
1994-12-23 14:24:20 +00:00
cgd
517b869072
note that the file name is const, and fix a couple of roff bogons.
1994-12-23 13:04:39 +00:00