comparison dmd/man.c @ 879:c57e71c5586f

Removed extraneous "|| __APPLE__" in dmd/man.c, 1.039 adds an __APPLE__ specific implementation, thanx Scriptor.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Fri, 09 Jan 2009 19:36:56 +0100
parents 27a379f288bf
children b30fe7e1dbb9
comparison
equal deleted inserted replaced
878:6cffbfff0363 879:c57e71c5586f
24 ShellExecute(NULL, "open", url, NULL, NULL, SW_SHOWNORMAL); 24 ShellExecute(NULL, "open", url, NULL, NULL, SW_SHOWNORMAL);
25 } 25 }
26 26
27 #endif 27 #endif
28 28
29 #if linux || __APPLE__ 29 #if linux
30 30
31 #include <sys/types.h> 31 #include <sys/types.h>
32 #include <sys/wait.h> 32 #include <sys/wait.h>
33 #include <unistd.h> 33 #include <unistd.h>
34 34