summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-09-28 21:55:25 (GMT)
committerGuido van Rossum <guido@python.org>1998-09-28 21:55:25 (GMT)
commitbe70450f03980fc681ffa06e47511bf2418955c0 (patch)
treed6ff1000065d5357943e29b79cebb253c836849d
parent5177c4841123c54879d86dfa32479543856146b4 (diff)
downloadcpython-be70450f03980fc681ffa06e47511bf2418955c0.zip
cpython-be70450f03980fc681ffa06e47511bf2418955c0.tar.gz
cpython-be70450f03980fc681ffa06e47511bf2418955c0.tar.bz2
Removed some OS/2 #defines (now in the OS/2 specific config.h).
Patch by Jeff Rush.
-rw-r--r--Modules/posixmodule.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 8174890..e6143e5 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -75,21 +75,6 @@ corresponding Unix manual entries for more information on calls.";
/* Various compilers have only certain posix functions */
/* XXX Gosh I wish these were all moved into config.h */
#if defined(PYCC_VACPP) && defined(PYOS_OS2)
-#define HAVE_EXECV 1
-#define HAVE_GETCWD 1
-#define HAVE_SYSTEM 1
-#define HAVE_WAIT 1
-#define HAVE_KILL 1
-#define HAVE_PIPE 1
-#define HAVE_POPEN 1
-
-/* #define HAVE_FORK 1 */
-/* #define HAVE_GETEGID 1 */
-/* #define HAVE_GETEUID 1 */
-/* #define HAVE_GETGID 1 */
-/* #define HAVE_GETPPID 1 */
-/* #define HAVE_GETUID 1 */
-/* #define HAVE_OPENDIR 1 */
#include <process.h>
#else
#if defined(__WATCOMC__) && !defined(__QNX__) /* Watcom compiler */