From 0f57e272a761109de3d7fb1e2137e53f8ed842a2 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Tue, 31 Aug 2021 18:12:41 +0200 Subject: Fix MSVC 'fileno' warning in example program (#109) --- examples/howto-add_fd-and-popen.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/howto-add_fd-and-popen.cxx b/examples/howto-add_fd-and-popen.cxx index c6afe5049..f3558b45f 100644 --- a/examples/howto-add_fd-and-popen.cxx +++ b/examples/howto-add_fd-and-popen.cxx @@ -8,7 +8,7 @@ // text can be highlighted, and the interface can be resized. // // Copyright 2010 Greg Ercolano. -// Copyright 1998-2010 by Bill Spitzak and others. +// Copyright 1998-2021 by Bill Spitzak and others. // // This library is free software. Distribution and use rights are outlined in // the file "COPYING" which should have been included with this file. If this @@ -30,6 +30,7 @@ # ifdef _MSC_VER # define popen _popen # define pclose _pclose +# define fileno _fileno # else /*_MSC_VER*/ # include // non-MS win32 compilers (untested) # endif /*_MSC_VER*/ -- cgit v1.2.3