blob: 53943eaf7dadb1928b21d1de0babc16dfb725746 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/* Use semicolons to separate elements of a path. */
#define PATH_SEPARATOR ';'
#define TARGET_OS_CPP_BUILTINS() \
do \
{ \
builtin_define_std ("unix"); \
} \
while (0)
#define CPP_SPEC "%{posix:-D_POSIX_SOURCE}"
|