]> Cypherpunks repositories - gostls13.git/commitdiff
all: fix obsolete inferno-os links
authorEmmanuel Odeke <emm.odeke@gmail.com>
Mon, 29 Aug 2016 00:04:46 +0000 (17:04 -0700)
committerIan Lance Taylor <iant@golang.org>
Mon, 29 Aug 2016 04:54:42 +0000 (04:54 +0000)
Fixes #16911.

Fix obsolete inferno-os links, since code.google.com shutdown.
This CL points to the right files by replacing
http://code.google.com/p/inferno-os/source/browse
with
https://bitbucket.org/inferno-os/inferno-os/src/default

To implement the change I wrote and ran this script in the root:
$ grep -Rn 'http://code.google.com/p/inferno-os/source/browse' * \
| cut -d":" -f1 | while read F;do perl -pi -e \
's/http:\/\/code.google.com\/p\/inferno-os\/source\/browse/https:\/\/bitbucket.org\/inferno-os\/inferno-os\/src\/default/g'
$F;done

I excluded any cmd/vendor changes from the commit.

Change-Id: Iaaf828ac8f6fc949019fd01832989d00b29b6749
Reviewed-on: https://go-review.googlesource.com/27994
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>

75 files changed:
src/cmd/compile/internal/amd64/gsubr.go
src/cmd/compile/internal/amd64/peep.go
src/cmd/compile/internal/amd64/reg.go
src/cmd/compile/internal/arm/gsubr.go
src/cmd/compile/internal/arm/peep.go
src/cmd/compile/internal/arm/reg.go
src/cmd/compile/internal/arm64/gsubr.go
src/cmd/compile/internal/arm64/peep.go
src/cmd/compile/internal/arm64/reg.go
src/cmd/compile/internal/gc/gsubr.go
src/cmd/compile/internal/gc/popt.go
src/cmd/compile/internal/gc/reg.go
src/cmd/compile/internal/mips64/gsubr.go
src/cmd/compile/internal/mips64/peep.go
src/cmd/compile/internal/mips64/reg.go
src/cmd/compile/internal/ppc64/gsubr.go
src/cmd/compile/internal/ppc64/peep.go
src/cmd/compile/internal/ppc64/reg.go
src/cmd/compile/internal/s390x/gsubr.go
src/cmd/compile/internal/s390x/peep.go
src/cmd/compile/internal/s390x/reg.go
src/cmd/compile/internal/x86/gsubr.go
src/cmd/compile/internal/x86/peep.go
src/cmd/compile/internal/x86/reg.go
src/cmd/internal/obj/arm/a.out.go
src/cmd/internal/obj/arm/asm5.go
src/cmd/internal/obj/arm/list5.go
src/cmd/internal/obj/arm/obj5.go
src/cmd/internal/obj/data.go
src/cmd/internal/obj/ld.go
src/cmd/internal/obj/link.go
src/cmd/internal/obj/pass.go
src/cmd/internal/obj/sym.go
src/cmd/internal/obj/x86/a.out.go
src/cmd/internal/obj/x86/asm6.go
src/cmd/internal/obj/x86/list6.go
src/cmd/internal/obj/x86/obj6.go
src/cmd/link/internal/amd64/asm.go
src/cmd/link/internal/amd64/l.go
src/cmd/link/internal/amd64/obj.go
src/cmd/link/internal/arm/asm.go
src/cmd/link/internal/arm/l.go
src/cmd/link/internal/arm/obj.go
src/cmd/link/internal/arm64/asm.go
src/cmd/link/internal/arm64/l.go
src/cmd/link/internal/arm64/obj.go
src/cmd/link/internal/ld/ar.go
src/cmd/link/internal/ld/data.go
src/cmd/link/internal/ld/ld.go
src/cmd/link/internal/ld/lib.go
src/cmd/link/internal/ld/link.go
src/cmd/link/internal/ld/main.go
src/cmd/link/internal/ld/sym.go
src/cmd/link/internal/ld/symtab.go
src/cmd/link/internal/mips64/asm.go
src/cmd/link/internal/mips64/l.go
src/cmd/link/internal/mips64/obj.go
src/cmd/link/internal/ppc64/asm.go
src/cmd/link/internal/ppc64/l.go
src/cmd/link/internal/ppc64/obj.go
src/cmd/link/internal/s390x/asm.go
src/cmd/link/internal/s390x/l.go
src/cmd/link/internal/s390x/obj.go
src/cmd/link/internal/x86/asm.go
src/cmd/link/internal/x86/l.go
src/cmd/link/internal/x86/obj.go
src/runtime/memclr_arm.s
src/runtime/memmove_386.s
src/runtime/memmove_amd64.s
src/runtime/memmove_arm.s
src/runtime/memmove_plan9_386.s
src/runtime/memmove_plan9_amd64.s
src/runtime/vlop_386.s
src/runtime/vlop_arm.s
src/runtime/vlrt.go

index 5d9070ca130c0d89671963023c680e41af3eacda..bab611347d5199543431f065c634fdb31e3e0aa1 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/txt.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/txt.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/txt.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 4ae5fcef8b63c32966e6a2acaeacfeca8f2898ab..d74f670c5d882312923c4f7c30b866e62d064eea 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/peep.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/peep.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/peep.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 77720c855f13f17156827530ef5456102fdc5ea4..361b1e2d6c53965b91aa0607ca46ec8795239392 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/reg.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/reg.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/reg.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index b5d7bc05c405e4d37302e35b38b088feae5cb291..1a7ebbc0b1f3b95537a6cc3a4d3a5573312ec2b5 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/5c/txt.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5c/txt.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5c/txt.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 2c5896c2f76306f1d718aec377f83513c3b7cc60..12678dfebfcc1deb7082fec8bfa334074427a6e7 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5c/peep.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5c/peep.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5c/peep.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 2313bc4eb966cd47c7243d728c2f7bf3767905d8..729cab4b8d052b3d9d23abcc741404fff05a2589 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5c/reg.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5c/reg.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5c/reg.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index ddf2ed969df2d077c809736cb88505252babb8ba..2dcde169a0ca622c991010a9344f4f68271ec81c 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/txt.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/txt.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/txt.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 9f07ae14799b2530beebbff3409539a7c52b2e20..6e0b5272082aa9afdec8b923ca3c158518afa11e 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/peep.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/peep.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/peep.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 6e24dc2d5def7733be42e4000b033a0257cb3c6d..dfbbff5ff14afabf62e0663803f29d0c20a408d6 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/reg.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/reg.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/reg.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 98cd03f6562f23039fcfbc3ce681ba2f678b304a..92892ac1e04190004434b6fe8b8a18bf9ebe4478 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/txt.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/txt.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/txt.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 8e2a7ba446aa2203bbadd23915b2ed2ca1e5d78d..d7a0c36206ca9d509aa1ed7cdcfe7ea6bdbc0606 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/gc.h
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/gc.h
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/gc.h
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index a80d72b9b82796513d6a601ffc286e3ff1892a0d..ab45fe07c03c859b30077a088d674045cd313e72 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/reg.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/reg.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/reg.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index eb56d8b82e6e9319265206ba3c5b1a7fd20b0db7..a667747bdda00422369064e111f307afd75f8e58 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/txt.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/txt.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/txt.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index f6717e60f90416c80fa6db81929b779706ef9413..ce639ac9a668f0a3adae10a8bc1c1d917c5d0e39 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/peep.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/peep.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/peep.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 2d2a77367d226354a3ee36e00a81c87e7c1600dd..0efa15921842814fd9ab22cf93dbcbbd9899d578 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/reg.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/reg.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/reg.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index f875999718b23d74d744f06b49d051e64b5311bf..8140d397c7a9cb2b81cb3fb4f14fdcc9e13c5afb 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/txt.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/txt.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/txt.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 4b2b985d91b1794630302114f6726e50ab3af148..ebdcc03292cfecf3467ad061c02b52285ac64b28 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/peep.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/peep.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/peep.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 215c9b5cd6bab4486d0115d4e8d83fa617f56471..d93eb5c080aa3c607aeeaa58f11f70b63bebc791 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/reg.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/reg.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/reg.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 7760812206dba1bb5bf946009a0dcf491c792ede..0da4e73a9e1584e38c83e39c3e16376221c5d280 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/txt.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/txt.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/txt.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index aca821898880d2858cf6ec89954d58e4ef5280cc..6400f6104a956ec673b7170ffa1aaf5b65c20b4c 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/peep.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/peep.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/peep.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 4cb8a9da05198eba4954ad8933dda0b89e4802f2..b42314d9f485d4be88f3a8d9f5f251fd2aee9f23 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/reg.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/reg.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/reg.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 6406326b60e0501cf13f06cfd61b8b726b8ce9c0..2fb45a7d073bb6ada06c226f9aa3ac48f80ea16d 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/8c/txt.c
-// http://code.google.com/p/inferno-os/source/browse/utils/8c/txt.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/8c/txt.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index e70c10f267b56d48240c34c6d8855f9f3ebaeefb..6a07fe24cd078591055f8b77737bb521f3048166 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/peep.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/peep.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/peep.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index cc94d728b470e849b79ff00f7ee831737e59a62d..2d7bd221ad26105aaf7e9f7e34d32ecedd05319b 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6c/reg.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/reg.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/reg.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 9fcc483b9ac996443d42cb5283c015f72b4cc8d1..ad19f2d312276e6218fce21d38666edb2893d07f 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5c/5.out.h
-// http://code.google.com/p/inferno-os/source/browse/utils/5c/5.out.h
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5c/5.out.h
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 02f2c57d05b4426d006285129e3a87a472ed0152..2b561c4dd9934de320c52c86e94287906966687b 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/span.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/span.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/span.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index a0c210e3ba9af9d8b7ba4a6b8936fd3782a429c1..c25a8b7f08c9e787cbb871d2da70ea5b5dda51f8 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5c/list.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5c/list.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5c/list.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index c4af78fe341037d6b57b8bcb1dc4fa88e043ad17..4ffe3c613869a1b2ddd935b198afa68c57f95a4a 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/5c/swt.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5c/swt.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5c/swt.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 29530fa2b096f612880f1877cbaafa785b53f0fd..0ccb053fdc66e8576a7d514b3d2cdbe866ba971d 100644 (file)
@@ -1,6 +1,6 @@
 // Derived from Inferno utils/6l/obj.c and utils/6l/span.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/obj.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/span.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/obj.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/span.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 81a16d1a9b577722a0d46eb6b148090bce20db05..54fde2f20387729ec0fd30ef23fc2ed4a518f362 100644 (file)
@@ -1,6 +1,6 @@
 // Derived from Inferno utils/6l/obj.c and utils/6l/span.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/obj.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/span.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/obj.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/span.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index ed82e175fdb5e49a696533c4e9a3bb31ead25856..eaf33651d87f3fa5f159f02e9f001f5314831a45 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6l/l.h and related files.
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/l.h
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/l.h
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index ffbff746dd405f976144214d6c1f84636443fd2a..1d2f74b9fe5e54086e1696e3b0c74acb6dc09f49 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/6l/pass.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/pass.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/pass.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index e974ca8c8af30602c7b39780fb46d2af20ff9866..d5f08f8cc0797f28c886993aef3af56eccd6cbe5 100644 (file)
@@ -1,6 +1,6 @@
 // Derived from Inferno utils/6l/obj.c and utils/6l/span.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/obj.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/span.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/obj.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/span.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index ab1dabc2b89735959662c1c67f725dd6217928d4..9e7bbe49009ae4f060706ca6a0e4b42aa4f78772 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/6c/6.out.h
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/6.out.h
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/6.out.h
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index d94bd60e8d4d9960533bb1e02d2cc3ff87cf6d03..5d6a9d8c5ab0afae204a0a245016cf7fb727b70d 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/6l/span.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/span.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/span.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index fa9ddca7d2bdf22e1fa2b1c5e3f5fb1a03681aff..a1a49ed39aa15aee34cb76e2e018b94708f6ff7a 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/6c/list.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6c/list.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/list.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 5e432774a72ee68fd635d68c4ee6bd92c76f5432..5cd06c093f8468b82e1efeb5aa354023cfef68fb 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/6l/pass.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/pass.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/pass.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index ded36643285ef1d40202a53e2aa743752e944070..69a3f50d615675504352d934f0cf6dd7da68033d 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/6l/asm.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/asm.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/asm.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 05f7fa36e46d527d7564eb29023e166bad67c099..2024f162be2e81d40bdd2b6bcd0079721327699f 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/6l/l.h
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/l.h
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/l.h
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 5c1fafd56fff36e9c566c85c1e9095b8892e4f3a..8a3bb1361e9da21c1b9310ed86e525937d463ab0 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/6l/obj.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/obj.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/obj.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 06a6d2d17da74916659aefa0ee908b8609470e44..8a2aa99f4e4a624dc803c299c75b1877a62aef15 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/asm.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/asm.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/asm.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 63b1165687b4fcd2757ca756d1805427e1294839..91718de54501160eaed210998eabd106e66fee4a 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/asm.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/asm.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/asm.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
@@ -33,7 +33,7 @@ package arm
 // Writing object files.
 
 // Inferno utils/5l/l.h
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/l.h
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/l.h
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 7af55f89c007e94df119a83e073f858fb59fbdb9..64c88934f14f60b29d9ee720ef490a8d3ee0b486 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/obj.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/obj.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/obj.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 9ec2224a65f4aaeef9aeb218713a14734e4d2409..fa3050b74bf5579e9e3b983d29bdd1745e2bf87e 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/asm.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/asm.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/asm.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index cbee2a3d8794ad23baaca5b13fef5389495876cf..b0ece1670f1ad3b00acd9892ee4fa8586ebb5d9c 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/asm.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/asm.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/asm.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 8ee7dae459bd0b3934efe6f617dcf1b725a5e429..18147a2923f007fabcc135d32513d8bb28bd5c15 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/obj.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/obj.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/obj.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index ad517d638784ac3371667d134ee0f15b077baee6..282630b87e8cab337e7d8fd2446833f3e37596fa 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/include/ar.h
-// http://code.google.com/p/inferno-os/source/browse/utils/include/ar.h
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/include/ar.h
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index fdf99d602b86a6ac11f1f4bddda67d3945c12353..9c0daa1f3fe1823568ab808405be278a453810e4 100644 (file)
@@ -1,6 +1,6 @@
 // Derived from Inferno utils/6l/obj.c and utils/6l/span.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/obj.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/span.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/obj.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/span.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index f6ae51f7339dc4eb8f524fde1405bb8132a22ebb..aa08cbdbcbfb630e6549f0e3e13dc608414c0811 100644 (file)
@@ -1,6 +1,6 @@
 // Derived from Inferno utils/6l/obj.c and utils/6l/span.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/obj.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/span.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/obj.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/span.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 3033258e77943c9d4e8028cc5573db21488c87e6..9f906080e9b9118175d5e06b8e257104dec08554 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/8l/asm.c
-// http://code.google.com/p/inferno-os/source/browse/utils/8l/asm.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/8l/asm.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
@@ -54,7 +54,7 @@ import (
 // Data layout and relocation.
 
 // Derived from Inferno utils/6l/l.h
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/l.h
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/l.h
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index c24bc198f0888dd8065e2a6a0a28bfea4b4624ea..07ef86edf8db7c6b606c96a96600f73be6e92e5d 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno utils/6l/l.h and related files.
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/l.h
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/l.h
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 9c9bdb4b7fdd540eb9bc93799cbaf56139188799..b05afb6188a7cadac95a1aea19cff4162b89e394 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/6l/obj.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/obj.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/obj.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 163d5b07a629223406d5fa14adacbea999e781ec..8efa7f15d44fb512ee3e7fec493e97df95a0dbdf 100644 (file)
@@ -1,6 +1,6 @@
 // Derived from Inferno utils/6l/obj.c and utils/6l/span.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/obj.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/span.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/obj.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/span.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 6a2ccd5d0bdffd19bd7d7d8cd46f59300f89e1aa..4c969687b67df012beacd2a5cdcfb484b293a89d 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/6l/span.c
-// http://code.google.com/p/inferno-os/source/browse/utils/6l/span.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/span.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 81017319c78e12a0ef4be3c0302063c5e57ea4cd..5ff4125f4f5bc55d6ad2a72cc232b0f9180d1158 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/asm.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/asm.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/asm.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index e3f4fb30c817ac504176e60432560667ad2fe9bd..edf7170363578ab6addd6de39ef526784c623415 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/asm.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/asm.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/asm.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index d2b200dbe073e60b609c8c18fe24dfedda870539..523db6c9a607d70d2135911cc54b3f797a084e55 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/obj.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/obj.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/obj.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index afbfca10d1535fb83ef2fd82e8b05a3842d9c6a8..34ac6b46e0c4dd70fffa1a2be7ce275f7fc833e1 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/asm.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/asm.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/asm.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 2e5c2356611fabd90b7a8addfc42f6756442f7a0..64b05e035c6155dac8ea0a6de1317afab71353e3 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/asm.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/asm.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/asm.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index e3bb1505f70bdb6ae5012b005f54f5e1721227ab..d17bc6ce589a462c171d29ba5887d72b12e0394a 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/obj.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/obj.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/obj.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 1d366858538624ca67f5e20fca041edac10ed44b..cebcc75e357c804a9f3d90ba3984e539a06fd6c1 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/asm.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/asm.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/asm.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 7c92bdb6d65d407a64c0d8b6228dd92f2182d338..401dbbad4ac31b6243861a23f826728c7cd9bba3 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/asm.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/asm.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/asm.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 2a3d0fcb267f3b274cd97fdc2cea7e6295b9be96..09b9710da90e731e0964d57c49570bc54e1cc7c2 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/5l/obj.c
-// http://code.google.com/p/inferno-os/source/browse/utils/5l/obj.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/5l/obj.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index d04e82447abae0e6a021c6ea4bfb52e21b142682..cc55c2101a8481f37f8b96235d9c324fd4b173db 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/8l/asm.c
-// http://code.google.com/p/inferno-os/source/browse/utils/8l/asm.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/8l/asm.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index 065508eca3032a624bc8c7fac96d93f56468815e..80df96bece32ba40fe5be989e1a6d14d6dfd3e3b 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/8l/l.h
-// http://code.google.com/p/inferno-os/source/browse/utils/8l/l.h
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/8l/l.h
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index f5722780b798a77b6ad336c8719072bad8b24d35..48335d82f77728b5d25aa3102f53ff63a596a2f8 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno utils/8l/obj.c
-// http://code.google.com/p/inferno-os/source/browse/utils/8l/obj.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/8l/obj.c
 //
 //     Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
 //     Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
index c9b8586eae78582d88ebab8898be18a9a638ed07..6ad70fbfc0f8c66528ac90a3da92a1292aa79b78 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno's libkern/memset-arm.s
-// http://code.google.com/p/inferno-os/source/browse/libkern/memset-arm.s
+// https://bitbucket.org/inferno-os/inferno-os/src/default/libkern/memset-arm.s
 //
 //         Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved.
 //         Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com).  All rights reserved.
index 52b35a6ac7abd639161b9606974575f4282f8964..b712ea182aef51ea5f2dd486782f3a746e229850 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno's libkern/memmove-386.s
-// http://code.google.com/p/inferno-os/source/browse/libkern/memmove-386.s
+// https://bitbucket.org/inferno-os/inferno-os/src/default/libkern/memmove-386.s
 //
 //         Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved.
 //         Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com).  All rights reserved.
index 39b4c3a2bb2cc478c13cbb881ee99c471049b10a..5d23ce3e6c44de84269acb2594b6533ada8dcf5e 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno's libkern/memmove-386.s (adapted for amd64)
-// http://code.google.com/p/inferno-os/source/browse/libkern/memmove-386.s
+// https://bitbucket.org/inferno-os/inferno-os/src/default/libkern/memmove-386.s
 //
 //         Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved.
 //         Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com).  All rights reserved.
index 6b880d5e6de9073867f049669e4997742137bc07..504ae04c1392dca69ca9724399abaad533c77e86 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno's libkern/memmove-arm.s
-// http://code.google.com/p/inferno-os/source/browse/libkern/memmove-arm.s
+// https://bitbucket.org/inferno-os/inferno-os/src/default/libkern/memmove-arm.s
 //
 //         Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved.
 //         Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com).  All rights reserved.
index c4d62ec946109b1fb9160e166374526daf508144..29d44b2f33e45256d1b3f40cd1dd8ce18a35e4e3 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno's libkern/memmove-386.s
-// http://code.google.com/p/inferno-os/source/browse/libkern/memmove-386.s
+// https://bitbucket.org/inferno-os/inferno-os/src/default/libkern/memmove-386.s
 //
 //         Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved.
 //         Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com).  All rights reserved.
index 9bef31d43ea6522071cc94231ca569442684ef22..a5e8dfa5714701924d8741bd891c266a417860f2 100644 (file)
@@ -1,5 +1,5 @@
 // Derived from Inferno's libkern/memmove-386.s (adapted for amd64)
-// http://code.google.com/p/inferno-os/source/browse/libkern/memmove-386.s
+// https://bitbucket.org/inferno-os/inferno-os/src/default/libkern/memmove-386.s
 //
 //         Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved.
 //         Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com).  All rights reserved.
index 0a84bde55b5b24481a79b9c7445ff145fdf77607..3387c519c8adba291d26f78303ae5ff21530434f 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno's libkern/vlop-386.s
-// http://code.google.com/p/inferno-os/source/browse/libkern/vlop-386.s
+// https://bitbucket.org/inferno-os/inferno-os/src/default/libkern/vlop-386.s
 //
 //         Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved.
 //         Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com).  All rights reserved.
index 338d9d5d09406f9548895182519d36b932fe4ef1..1eb23f005c36a28bdded0b7e07a7c56ea66a075b 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno's libkern/vlop-arm.s
-// http://code.google.com/p/inferno-os/source/browse/libkern/vlop-arm.s
+// https://bitbucket.org/inferno-os/inferno-os/src/default/libkern/vlop-arm.s
 //
 //         Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved.
 //         Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com).  All rights reserved.
index 7300f55dadb2977b9b2853b798070619f6970c47..f60457d084b18bb08512d86b4e1564d4afe60f9a 100644 (file)
@@ -1,5 +1,5 @@
 // Inferno's libkern/vlrt-arm.c
-// http://code.google.com/p/inferno-os/source/browse/libkern/vlrt-arm.c
+// https://bitbucket.org/inferno-os/inferno-os/src/default/libkern/vlrt-arm.c
 //
 //         Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved.
 //         Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com).  All rights reserved.