From 0e3ce6c9a8f5d658ae5ef57e9aca1f3c0fc55b9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Fri, 21 Sep 2007 17:02:33 +0200 Subject: [PATCH] Remove fdLink, fdFree, fdNew defines. --- rpmio/rpmio.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/rpmio/rpmio.h b/rpmio/rpmio.h index 25d61e168..e81783205 100644 --- a/rpmio/rpmio.h +++ b/rpmio/rpmio.h @@ -371,18 +371,15 @@ extern int fdClose( void * cookie); /** */ -FD_t fdLink (void * cookie, const char * msg); -#define fdLink(_fd, _msg) fdio->_fdref(_fd, _msg, __FILE__, __LINE__) +extern FD_t fdLink (void * cookie, const char * msg); /** */ -FD_t fdFree(FD_t fd, const char * msg); -#define fdFree(_fd, _msg) fdio->_fdderef(_fd, _msg, __FILE__, __LINE__) +extern FD_t fdFree(FD_t fd, const char * msg); /** */ -FD_t fdNew (const char * msg); -#define fdNew(_msg) fdio->_fdnew(_msg, __FILE__, __LINE__) +extern FD_t fdNew (const char * msg); /** */