mirror of
https://github.com/python/cpython.git
synced 2025-10-21 22:22:48 +00:00
Changes for BeOS, QNX and long long, by Chris Herborth.
This commit is contained in:
parent
1a8791e0b8
commit
bcc207484a
12 changed files with 132 additions and 14 deletions
|
@ -2403,6 +2403,11 @@ static char posix_putenv__doc__[] =
|
|||
"putenv(key, value) -> None\n\
|
||||
Change or add an environment variable.";
|
||||
|
||||
#ifdef __BEOS__
|
||||
/* We have putenv(), but not in the headers (as of PR2). - [cjh] */
|
||||
int putenv( const char *str );
|
||||
#endif
|
||||
|
||||
static PyObject *
|
||||
posix_putenv(self, args)
|
||||
PyObject *self;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue