diff options
| author | thegeorg <[email protected]> | 2024-02-15 20:53:36 +0300 |
|---|---|---|
| committer | Innokentii Mokin <[email protected]> | 2024-02-16 18:35:21 +0000 |
| commit | 84fd3fbde05b18ad1bc34743b7a8c618ab999356 (patch) | |
| tree | ad192c9ff4b06fccae8a378a76b7cb7617b87d18 | |
| parent | fc7a0df15982dbcb9f6796490e7a42622a0576c5 (diff) | |
Disable vxWorks-specific includes
bee88d907230451bacc8c0aa4fa5ecc8f9cba59c
| -rw-r--r-- | contrib/tools/python3/src/Modules/posixmodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/tools/python3/src/Modules/posixmodule.c b/contrib/tools/python3/src/Modules/posixmodule.c index 96b3931064d..c99c69d018b 100644 --- a/contrib/tools/python3/src/Modules/posixmodule.c +++ b/contrib/tools/python3/src/Modules/posixmodule.c @@ -382,10 +382,10 @@ extern char *ctermid_r(char *); #endif /* !_MSC_VER */ #if defined(__VXWORKS__) -# include <vxCpuLib.h> -# include <rtpLib.h> +# error #include <vxCpuLib.h> +# error #include <rtpLib.h> # include <wait.h> -# include <taskLib.h> +# error #include <taskLib.h> # ifndef _P_WAIT # define _P_WAIT 0 # define _P_NOWAIT 1 |
