diff options
author | Guido van Rossum <guido@python.org> | 1993-01-04 09:09:59 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-01-04 09:09:59 (GMT) |
commit | a2b7f40513ba5d75a2063c3fabe47377cd8c0416 (patch) | |
tree | a49810320cbb0291ed16424b8d7ca980b5c2b1b1 /Include | |
parent | 349f2b516b89c46f915a57029ed2bd33f85ff363 (diff) | |
download | cpython-a2b7f40513ba5d75a2063c3fabe47377cd8c0416.zip cpython-a2b7f40513ba5d75a2063c3fabe47377cd8c0416.tar.gz cpython-a2b7f40513ba5d75a2063c3fabe47377cd8c0416.tar.bz2 |
* Configure.py: use #!/usr/local/bin/python
* posixmodule.c: move extern function declarations to top
* listobject.c: cmp() arguments must be void* if __STDC__
* Makefile, allobjects.h, panelmodule.c, modsupport.c: get rid of
strdup() -- it is a portability risk
* Makefile: enclosed ranlib command in parentheses for Sequent Make
which aborts if the command is not found even if '-' is present
* timemodule.c: time() returns a floating point number, in microsecond
precision if BSD_TIME is defined.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/allobjects.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/allobjects.h b/Include/allobjects.h index dd78a83..34232fd 100644 --- a/Include/allobjects.h +++ b/Include/allobjects.h @@ -52,5 +52,4 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "errors.h" #include "mymalloc.h" -extern char *strdup PROTO((const char *)); extern void fatal PROTO((char *)); |