diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-10-10 14:27:30 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-10-10 14:27:30 (GMT) |
commit | dbe3f76270d8bc22f1201e6ac1d63dbe3124dc3f (patch) | |
tree | 988b0053e0e936a73a44e832bcff73c24b554cfa /pyconfig.h.in | |
parent | 3e3e1296f09b5320ce7aa735896a6b53e401e2a9 (diff) | |
download | cpython-dbe3f76270d8bc22f1201e6ac1d63dbe3124dc3f.zip cpython-dbe3f76270d8bc22f1201e6ac1d63dbe3124dc3f.tar.gz cpython-dbe3f76270d8bc22f1201e6ac1d63dbe3124dc3f.tar.bz2 |
Patch #569139: Implementation of major, minor and makedev.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 903f8d2..193a9ca 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -57,6 +57,9 @@ /* Define to 1 if you have the `ctermid_r' function. */ #undef HAVE_CTERMID_R +/* Define to 1 if you have the device macros. */ +#undef HAVE_DEVICE_MACROS + /* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'. */ #undef HAVE_DIRENT_H @@ -604,6 +607,14 @@ /* Define if you are using Mach cthreads under mach / */ #undef MACH_C_THREADS +/* Define to 1 if `major', `minor', and `makedev' are declared in <mkdev.h>. + */ +#undef MAJOR_IN_MKDEV + +/* Define to 1 if `major', `minor', and `makedev' are declared in + <sysmacros.h>. */ +#undef MAJOR_IN_SYSMACROS + /* Define if malloc(0) returns a NULL pointer. */ #undef MALLOC_ZERO_RETURNS_NULL |