1Solaris 2.x is like System V (maybe it *is* System V?) and is different
2from older versions in that it uses no leading underscore for variable
3and function names.  That is, the old convention was:
4
5	foo(){}
6
7got compiled as
8
9		.globl	_foo
10	_foo:
11
12and is now compiled as
13
14		.globl	foo
15	foo:
16
17The `config' script should fix up the older (leading underscore) versions
18of the machine-dependent files to use the newer (no leading underscore)
19calling conventions.
20