From b59f99788cdb1871f137c4024300b6ddcdfe445c Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Sun, 18 May 1997 19:59:58 +0000 Subject: [PATCH] prototype for `alloc_buffer' git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1729 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/ftp/common/common.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/appl/ftp/common/common.h b/appl/ftp/common/common.h index f8ca5274b..ec011e612 100644 --- a/appl/ftp/common/common.h +++ b/appl/ftp/common/common.h @@ -49,4 +49,14 @@ void set_buffer_size(int, int); +#include +#ifdef HAVE_SYS_TYPES_H +#include +#endif +#ifdef HAVE_SYS_STAT_H +#include +#endif + +void *alloc_buffer (void *oldbuf, size_t *sz, struct stat *st); + #endif /* __COMMON_H__ */