diff options
author | rsc <devnull@localhost> | 2004-04-19 18:52:34 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-04-19 18:52:34 +0000 |
commit | 7284df18a883c64721720276dac4f4540440e74c (patch) | |
tree | 24753607004ead79a235da7242e7fba95f721941 /acid/386 | |
parent | d9c2aa3a3366b60d5054c575801692579162a47f (diff) | |
download | plan9port-7284df18a883c64721720276dac4f4540440e74c.tar.gz plan9port-7284df18a883c64721720276dac4f4540440e74c.tar.bz2 plan9port-7284df18a883c64721720276dac4f4540440e74c.zip |
bring them up-to-speed for current system.
Diffstat (limited to 'acid/386')
-rw-r--r-- | acid/386 | 20 |
1 files changed, 7 insertions, 13 deletions
@@ -173,7 +173,7 @@ linkdebug() } defn -acidmap() +dynamicmap() { if systype == "linux" then { local r, m, n; @@ -192,19 +192,13 @@ acidmap() } } } +} - local syms; - local l; - - l = textfile(); - if l != {} then { - syms = "acidtypes"; - while l != {} do { - syms = syms + " " + ((head l)[0]); - l = tail l; - } - includepipe(syms); - } +defn +acidmap() +{ + dynamicmap(); + acidtypes(); } print(acidfile); |