From 259552dbd9117fcde8d3b5d676011611899f86dd Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 9 Dec 1996 18:46:28 +0000 Subject: [PATCH] Added ``extern int get_default_domain();'' for SGI, to keep gcc -Wall happy. --- Modules/nismodule.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Modules/nismodule.c b/Modules/nismodule.c index ab5b9d0d7d..b95b9146f7 100644 --- a/Modules/nismodule.c +++ b/Modules/nismodule.c @@ -20,6 +20,11 @@ #include #include +#ifdef __sgi +/* This is missing from rpcsvc/ypclnt.h */ +extern int yp_get_default_domain(); +#endif + static object *NisError; static object * -- 2.50.1