summaryrefslogtreecommitdiff
path: root/sys/src
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2016-11-17 19:54:13 +0100
committercinap_lenrek <cinap_lenrek@felloff.net>2016-11-17 19:54:13 +0100
commit6fc0e0541c6f27dcb4c6196eab5badedf49c01c8 (patch)
tree1bdd2badc089aad1707f3a477d5a23c62c3e4c09 /sys/src
parentb4db73795e37e1233b0eca57ff3ae11207882861 (diff)
libsec: remove unused get32() function
Diffstat (limited to 'sys/src')
-rw-r--r--sys/src/libsec/port/tlshand.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/src/libsec/port/tlshand.c b/sys/src/libsec/port/tlshand.c
index 9c3c140bd..1c59ddf67 100644
--- a/sys/src/libsec/port/tlshand.c
+++ b/sys/src/libsec/port/tlshand.c
@@ -440,7 +440,6 @@ static void* erealloc(void*, int);
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 get24(uchar *p);
static int get16(uchar *p);
static Bytes* newbytes(int len);
@@ -3015,12 +3014,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
get24(uchar *p)
{