mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
* Added support for X11 modules.
* Makefile: change location of FORMS library. * posixmodule.c: turn #if 0 into #ifdef MSDOS (stuff in unistd.h or not) * Almost all .h files: added CPP magic to avoid duplicate inclusions and to support inclusion from C++.
This commit is contained in:
parent
f6da4f62b4
commit
a3309960a5
57 changed files with 986 additions and 3 deletions
|
@ -85,15 +85,15 @@ extern int chdir PROTO((const char *));
|
|||
extern int rmdir PROTO((const char *));
|
||||
extern int chmod PROTO((const char *, mode_t));
|
||||
extern char *getcwd PROTO((char *, int)); /* XXX or size_t? */
|
||||
#if 0
|
||||
#ifndef MSDOS
|
||||
extern char *strerror PROTO((int));
|
||||
extern int link PROTO((const char *, const char *));
|
||||
extern int rename PROTO((const char *, const char *));
|
||||
extern int stat PROTO((const char *, struct stat *));
|
||||
extern int unlink PROTO((const char *));
|
||||
extern int pclose PROTO((FILE *));
|
||||
#endif
|
||||
#endif /* _SEQUENT_ */
|
||||
#endif /* !MSDOS */
|
||||
#endif /* !_SEQUENT_ */
|
||||
#ifdef NO_LSTAT
|
||||
#define lstat stat
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue