From 8717b5e3e65cc604293a03a55ba6f74f90355005 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 7 Sep 2006 07:26:02 +0000 Subject: r18206: need rep_ macro for setlinebuf (This used to be commit 6a48f75eaef031538c3e5b98d8672919bba7c409) --- source4/lib/replace/replace.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source4') diff --git a/source4/lib/replace/replace.h b/source4/lib/replace/replace.h index 4757046b6e..1a6e1588cb 100644 --- a/source4/lib/replace/replace.h +++ b/source4/lib/replace/replace.h @@ -130,6 +130,11 @@ int rep_seteuid(uid_t); int rep_setegid(gid_t); #endif +#ifndef HAVE_SETLINEBUF +#define setlinebuf rep_setlinebuf +int rep_setlinebuf(FILE *); +#endif + #ifndef HAVE_STRCASESTR #define strcasestr rep_strcasestr char *rep_strcasestr(const char *haystack, const char *needle); -- cgit