112027Sjungma@eit.uni-kl.deSolaris 2.x is like System V (maybe it *is* System V?) and is different
212027Sjungma@eit.uni-kl.defrom older versions in that it uses no leading underscore for variable
312027Sjungma@eit.uni-kl.deand function names.  That is, the old convention was:
412027Sjungma@eit.uni-kl.de
512027Sjungma@eit.uni-kl.de	foo(){}
612027Sjungma@eit.uni-kl.de
712027Sjungma@eit.uni-kl.degot compiled as
812027Sjungma@eit.uni-kl.de
912027Sjungma@eit.uni-kl.de		.globl	_foo
1012027Sjungma@eit.uni-kl.de	_foo:
1112027Sjungma@eit.uni-kl.de
1212027Sjungma@eit.uni-kl.deand is now compiled as
1312027Sjungma@eit.uni-kl.de
1412027Sjungma@eit.uni-kl.de		.globl	foo
1512027Sjungma@eit.uni-kl.de	foo:
1612027Sjungma@eit.uni-kl.de
1712027Sjungma@eit.uni-kl.deThe `config' script should fix up the older (leading underscore) versions
1812027Sjungma@eit.uni-kl.deof the machine-dependent files to use the newer (no leading underscore)
1912027Sjungma@eit.uni-kl.decalling conventions.
20