summaryrefslogtreecommitdiff
path: root/qt/md/solaris.README
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>1996-12-18 21:42:27 +0000
committercvs2svn <admin@example.com>1996-12-18 21:42:27 +0000
commit1825e819708b917f0830bee4e9bdf0402b8f338f (patch)
tree16360e899fbd8729b6e37016227c275701bb0173 /qt/md/solaris.README
parent4d46a0279bb9dbe7e7399d6d2f1f54ccac01b987 (diff)
downloadguile-pre_jimb_debug.tar.gz
This commit was manufactured by cvs2svn to create tagpre_jimb_debug
'pre_jimb_debug'.
Diffstat (limited to 'qt/md/solaris.README')
-rw-r--r--qt/md/solaris.README19
1 files changed, 0 insertions, 19 deletions
diff --git a/qt/md/solaris.README b/qt/md/solaris.README
deleted file mode 100644
index 04f855c44..000000000
--- a/qt/md/solaris.README
+++ /dev/null
@@ -1,19 +0,0 @@
-Solaris 2.x is like System V (maybe it *is* System V?) and is different
-from older versions in that it uses no leading underscore for variable
-and function names. That is, the old convention was:
-
- foo(){}
-
-got compiled as
-
- .globl _foo
- _foo:
-
-and is now compiled as
-
- .globl foo
- foo:
-
-The `config' script should fix up the older (leading underscore) versions
-of the machine-dependent files to use the newer (no leading underscore)
-calling conventions.