diff options
author | Skip Montanaro <skip@pobox.com> | 2004-02-10 16:50:21 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2004-02-10 16:50:21 (GMT) |
commit | 7befb9966e1435475a9d2e9d3cc3670564ce77aa (patch) | |
tree | 4e33029bfd72bb8eaa72f9fdd5c1712e5ecdb97b /RISCOS | |
parent | 05eb40128e305e07527d317e3964e8a1160d0961 (diff) | |
download | cpython-7befb9966e1435475a9d2e9d3cc3670564ce77aa.zip cpython-7befb9966e1435475a9d2e9d3cc3670564ce77aa.tar.gz cpython-7befb9966e1435475a9d2e9d3cc3670564ce77aa.tar.bz2 |
remove support for missing ANSI C header files (limits.h, stddef.h, etc).
Diffstat (limited to 'RISCOS')
-rw-r--r-- | RISCOS/pyconfig.h | 23 |
1 files changed, 5 insertions, 18 deletions
diff --git a/RISCOS/pyconfig.h b/RISCOS/pyconfig.h index 9d59e83..45f87be 100644 --- a/RISCOS/pyconfig.h +++ b/RISCOS/pyconfig.h @@ -1,5 +1,8 @@ /* RISCOS/pyconfig.h: Python configuration for RISC OS */ +#ifndef Py_PYCONFIG_H +#define Py_PYCONFIG_H + /* Define if on AIX 3. System headers sometimes define this. We just want to avoid a redefinition error message. */ @@ -577,12 +580,6 @@ /* Define if you have the <libutil.h> header file. */ #undef HAVE_LIBUTIL_H -/* Define if you have the <limits.h> header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the <locale.h> header file. */ -#define HAVE_LOCALE_H 1 - /* Define if you have the <ncurses.h> header file. */ #undef HAVE_NCURSES_H @@ -604,18 +601,6 @@ /* Define if you have the <pty.h> header file. */ #undef HAVE_PTY_H -/* Define if you have the <signal.h> header file. */ -#define HAVE_SIGNAL_H 1 - -/* Define if you have the <stdarg.h> header file. */ -#define HAVE_STDARG_H 1 - -/* Define if you have the <stddef.h> header file. */ -#define HAVE_STDDEF_H 1 - -/* Define if you have the <stdlib.h> header file. */ -#define HAVE_STDLIB_H 1 - /* Define if you have the <sys/audioio.h> header file. */ #undef HAVE_SYS_AUDIOIO_H @@ -706,3 +691,5 @@ #undef DONT_HAVE_SYS_STAT_H #define PLATFORM "riscos" + +#endif /* Py_PYCONFIG_H */ |