summaryrefslogtreecommitdiffstats
path: root/Include/osdefs.h
diff options
context:
space:
mode:
authorpxinwr <peixing.xin@windriver.com>2019-02-27 11:09:28 (GMT)
committerVictor Stinner <vstinner@redhat.com>2019-02-27 11:09:28 (GMT)
commit32f5fdd7f4213743fe2f6eedd0fe2108f3157021 (patch)
treef44f12ab017e996649fcbe8ed32216797f8d2ec0 /Include/osdefs.h
parent53b9e1a1c1d86187ad6fbee492b697ef8be74205 (diff)
downloadcpython-32f5fdd7f4213743fe2f6eedd0fe2108f3157021.zip
cpython-32f5fdd7f4213743fe2f6eedd0fe2108f3157021.tar.gz
cpython-32f5fdd7f4213743fe2f6eedd0fe2108f3157021.tar.bz2
bpo-31904: Add cross-build support for VxWorks RTOS (GH-11968)
Diffstat (limited to 'Include/osdefs.h')
-rw-r--r--Include/osdefs.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Include/osdefs.h b/Include/osdefs.h
index bd84c1c..3243944 100644
--- a/Include/osdefs.h
+++ b/Include/osdefs.h
@@ -14,6 +14,10 @@ extern "C" {
#define DELIM L';'
#endif
+#ifdef __VXWORKS__
+#define DELIM L';'
+#endif
+
/* Filename separator */
#ifndef SEP
#define SEP L'/'