diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-11-17 18:14:06 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-11-17 18:14:06 +0100 |
commit | dd4de0b0fa99364265ff6e99462259b8aef493c1 (patch) | |
tree | fd7950ca008a7d879cf131e2b2a3c2556aeb0ea7 /sys/src/9/port | |
parent | 0930f44febd25c27fb717e7323686e50c4fa0593 (diff) |
devtls: remove unused get32() function
Diffstat (limited to 'sys/src/9/port')
-rw-r--r-- | sys/src/9/port/devtls.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/src/9/port/devtls.c b/sys/src/9/port/devtls.c index c417b38b5..f0bfa5270 100644 --- a/sys/src/9/port/devtls.c +++ b/sys/src/9/port/devtls.c @@ -237,7 +237,6 @@ static void put64(uchar *p, u64int); static void put32(uchar *p, u32int); static void put24(uchar *p, int); static void put16(uchar *p, int); -static u32int get32(uchar *p); static int get16(uchar *p); static void tlsSetState(TlsRec *tr, int new, int old); static void rcvAlert(TlsRec *tr, int err); @@ -2329,12 +2328,6 @@ put16(uchar *p, int x) p[1] = x; } -static u32int -get32(uchar *p) -{ - return (p[0]<<24)|(p[1]<<16)|(p[2]<<8)|p[3]; -} - static int get16(uchar *p) { |