go.crypto: add exp/terminal as code.google.com/p/go.crypto/ssh/terminal.

This removes the sole "exp/foo" import in the Go subrepos.
A separate CL will remove exp/terminal from the standard Go repository.

R=golang-dev, dave, r
CC=golang-dev
https://golang.org/cl/5966045
diff --git a/ssh/example_test.go b/ssh/example_test.go
index 2ee9fd8..ea772c2 100644
--- a/ssh/example_test.go
+++ b/ssh/example_test.go
@@ -6,9 +6,10 @@
 
 import (
 	"bytes"
-	"exp/terminal"
 	"fmt"
 	"io/ioutil"
+
+	"code.google.com/p/go.crypto/ssh/terminal"
 )
 
 func ExampleListen() {