* isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 8 Sep 2006 17:11:17 +0000 (17:11 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 8 Sep 2006 17:11:17 +0000 (17:11 +0000)
Moved to here ...
* isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
... from here.

lib/ChangeLog
lib/isapipe.c
lib/isapipe.h

index ffb0909..fef066c 100644 (file)
@@ -1,3 +1,10 @@
+2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
+       Moved to here ...
+       * isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
+       ... from here.
+
 2006-09-06  Bruno Haible  <bruno@clisp.org>
 
        * striconv.h: New file.
 2006-09-05  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
 
        * argz_.h: Sync from Libtool.
-       
+
        2006-09-04  George Bosilca <bosilca@cs.utk.edu>
                and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
-       
+
        * libltdl/argz_.h: It's __cplusplus, not _cplusplus.
 
 2006-09-05  Davide Angelocola <davide.angelocola@tiscali.it>
index fe885bf..59b6f54 100644 (file)
 
 #include "stat-macros.h"
 
-/* Whether pipes are FIFOs; -1 if not known.  */
-#ifndef HAVE_FIFO_PIPES
-# define HAVE_FIFO_PIPES (-1)
-#endif
-
 /* The maximum link count for pipes; (nlink_t) -1 if not known.  */
 #ifndef PIPE_LINK_COUNT_MAX
 # define PIPE_LINK_COUNT_MAX ((nlink_t) (-1))
index 187527a..c108e30 100644 (file)
@@ -1 +1,6 @@
-int isapipe (int);
+/* Whether pipes are FIFOs; -1 if not known.  */
+#ifndef HAVE_FIFO_PIPES
+# define HAVE_FIFO_PIPES (-1)
+#endif
+
+int isapipe (int fd);