]> git.donarmstrong.com Git - mothur.git/blobdiff - mothur.h
chimera.seqs pintail is working.
[mothur.git] / mothur.h
index b27c5ada91ff59289856373122b3c4219ee1b965..ed206af809e4f369b12015ed0406966d12992a72 100644 (file)
--- a/mothur.h
+++ b/mothur.h
 #include <cerrno>
 #include <ctime>
 #include <limits>
-#include <sys/wait.h>
-#include <unistd.h>
+
+
+#if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
+       #include <sys/wait.h>
+       #include <unistd.h>
+#endif
 
 using namespace std;
 
@@ -177,7 +181,7 @@ inline string getline(ifstream& fileHandle) {
                        char c = fileHandle.get(); 
                        
                        //are you at the end of the line
-                       if (c == 10 || c == 13){   break;       }       
+                       if ((c == '\n') || (c == '\r') || (c == '\f')){   break;        }       
                        else {          line += c;              }
                }