summaryrefslogtreecommitdiff
path: root/contrib/pgcrypto/mbuf.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/pgcrypto/mbuf.h')
-rw-r--r--contrib/pgcrypto/mbuf.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/contrib/pgcrypto/mbuf.h b/contrib/pgcrypto/mbuf.h
index e6d754e8695..adb18430b71 100644
--- a/contrib/pgcrypto/mbuf.h
+++ b/contrib/pgcrypto/mbuf.h
@@ -78,13 +78,11 @@ struct PullFilterOps
*/
MBuf *mbuf_create(int len);
MBuf *mbuf_create_from_data(uint8 *data, int len);
-int mbuf_tell(MBuf *mbuf);
int mbuf_avail(MBuf *mbuf);
int mbuf_size(MBuf *mbuf);
int mbuf_grab(MBuf *mbuf, int len, uint8 **data_p);
int mbuf_steal_data(MBuf *mbuf, uint8 **data_p);
int mbuf_append(MBuf *dst, const uint8 *buf, int cnt);
-int mbuf_rewind(MBuf *mbuf);
int mbuf_free(MBuf *mbuf);
/*