From 8bee438df00e39f8977daa6b35e232a890502b92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Wed, 1 Apr 1998 16:25:51 +0200 Subject: [PATCH] Now includes <poll.h> if needed. Rev: src/builtin_functions.c:1.89 --- src/builtin_functions.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/builtin_functions.c b/src/builtin_functions.c index 82311af1e7..9d78cce48b 100644 --- a/src/builtin_functions.c +++ b/src/builtin_functions.c @@ -4,7 +4,7 @@ ||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h" -RCSID("$Id: builtin_functions.c,v 1.88 1998/03/26 13:20:29 grubba Exp $"); +RCSID("$Id: builtin_functions.c,v 1.89 1998/04/01 14:25:51 grubba Exp $"); #include "interpret.h" #include "svalue.h" #include "pike_macros.h" @@ -37,6 +37,10 @@ RCSID("$Id: builtin_functions.c,v 1.88 1998/03/26 13:20:29 grubba Exp $"); #include "opcodes.h" #include "cyclic.h" +#ifdef HAVE_POLL +#include <poll.h> +#endif /* HAVE_POLL */ + #ifdef HAVE_CRYPT_H #include <crypt.h> #endif -- GitLab