| [3225] | 1 | /* RISCOS/pyconfig.h: Python configuration for RISC OS */
|
|---|
| 2 |
|
|---|
| 3 | #ifndef Py_PYCONFIG_H
|
|---|
| 4 | #define Py_PYCONFIG_H
|
|---|
| 5 |
|
|---|
| 6 | /* Define if on AIX 3.
|
|---|
| 7 | System headers sometimes define this.
|
|---|
| 8 | We just want to avoid a redefinition error message. */
|
|---|
| 9 | #ifndef _ALL_SOURCE
|
|---|
| 10 | #undef _ALL_SOURCE
|
|---|
| 11 | #endif
|
|---|
| 12 |
|
|---|
| 13 | /* Define if type char is unsigned and you are not using gcc. */
|
|---|
| 14 | #ifndef __CHAR_UNSIGNED__
|
|---|
| 15 | #undef __CHAR_UNSIGNED__
|
|---|
| 16 | #endif
|
|---|
| 17 |
|
|---|
| 18 | /* Define to empty if the keyword does not work. */
|
|---|
| 19 | #undef const
|
|---|
| 20 |
|
|---|
| 21 | /* Define to `int' if <sys/types.h> doesn't define. */
|
|---|
| 22 | #undef gid_t
|
|---|
| 23 |
|
|---|
| 24 | /* Define if your struct tm has tm_zone. */
|
|---|
| 25 | #undef HAVE_TM_ZONE
|
|---|
| 26 |
|
|---|
| 27 | /* Define if you don't have tm_zone but do have the external array
|
|---|
| 28 | tzname. */
|
|---|
| 29 | #undef HAVE_TZNAME
|
|---|
| 30 |
|
|---|
| 31 | /* Define to `int' if <sys/types.h> doesn't define. */
|
|---|
| 32 | #undef mode_t
|
|---|
| 33 |
|
|---|
| 34 | /* Define to `long' if <sys/types.h> doesn't define. */
|
|---|
| 35 | #undef off_t
|
|---|
| 36 |
|
|---|
| 37 | /* Define to `int' if <sys/types.h> doesn't define. */
|
|---|
| 38 | #undef pid_t
|
|---|
| 39 |
|
|---|
| 40 | /* Define if the system does not provide POSIX.1 features except
|
|---|
| 41 | with this defined. */
|
|---|
| 42 | #undef _POSIX_1_SOURCE
|
|---|
| |
|---|