Parcourir la source

Enable piping on Windows

rexim il y a 4 ans
Parent
commit
0f3bf419e5
1 fichiers modifiés avec 0 ajouts et 4 suppressions
  1. 0 4
      examples/pipe.c

+ 0 - 4
examples/pipe.c

@@ -3,13 +3,9 @@
 
 int main(void)
 {
-#if _WIN32
-    WARN("Piping is not implemented on Windows yet");
-#else
     CHAIN(IN(PATH("examples", "pipe.c")),
           CHAIN_CMD(PATH("tools", "rot13")),
           CHAIN_CMD(PATH("tools", "hex")));
-#endif
 
     return 0;
 }