changeset 4013:9b99d84ded1b

[project @ 2002-08-01 20:36:15 by jwe]
author jwe
date Thu, 01 Aug 2002 20:36:15 +0000
parents e021e2e2c1ad
children 8eaf7182d48a
files scripts/miscellaneous/popen2.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/miscellaneous/popen2.m	Thu Aug 01 20:21:33 2002 +0000
+++ b/scripts/miscellaneous/popen2.m	Thu Aug 01 20:36:15 2002 +0000
@@ -90,7 +90,7 @@
           fclose (nth (stdin_pipe, 1));
           fclose (nth (stdout_pipe, 2));
 
-          if (fcntl (nth (stdout_pipe, 1), __F_SETFL__, __O_NONBLOCK__) < 0)
+          if (fcntl (nth (stdout_pipe, 1), F_SETFL, O_NONBLOCK) < 0)
             error ("popen2: error setting file mode");
           else
             in = nth (stdin_pipe, 2);