libsec: remove unused get32() function

This commit is contained in:
cinap_lenrek 2016-11-17 19:54:13 +01:00
parent b4db73795e
commit 6fc0e0541c

View file

@ -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)
{