[Python-Dev] warnings in dynload_shlib.c and posixmodule.c (original) (raw)

Guido van Rossum guido@python.org
Thu, 18 Oct 2001 11:37:14 -0400


When compiling the latest CVS on Linux (Mandrake 8.0) I get these warnings:

../Python/dynload_shlib.c: In function _PyImport_GetDynLoadFunc': ../Python/dynload_shlib.c:72: warning: implicit declaration of function dlsym' ../Python/dynload_shlib.c:88: warning: implicit declaration of function dlopen' ../Python/dynload_shlib.c:88: warning: assignment makes pointer from integer without a cast ../Python/dynload_shlib.c:91: warning: implicit declaration of function dlerror' ../Python/dynload_shlib.c:91: warning: passing arg 2 of PyErr_SetString' makes pointer from integer without a cast ../Modules/posixmodule.c: In function posix_setgroups': ../Modules/posixmodule.c:3169: warning: implicit declaration of function `setgroups'

Looks like some recent checkins...

--Guido van Rossum (home page: http://www.python.org/~guido/)