Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50e61dc commit 2807d19Copy full SHA for 2807d19
1 file changed
Python/marshal.c
@@ -28,6 +28,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
28
it would have to take circular links and sharing into account. */
29
30
#include "allobjects.h"
31
+#include "modsupport.h"
32
#include "longintrepr.h"
33
#include "compile.h"
34
#include "marshal.h"
@@ -131,7 +132,6 @@ wr_object(v, fp)
131
132
n = getdictsize(v);
133
for (i = 0; i < n; i++) {
134
object *key, *val;
- extern object *getdict2key();
135
key = getdict2key(v, (int)i);
136
if (key != NULL) {
137
val = dict2lookup(v, key); /* Can't be NULL */
@@ -221,7 +221,7 @@ rd_object(fp)
221
222
case TYPE_FLOAT:
223
{
224
- extern double strtod();
+ extern double strtod PROTO((const char *, char **));
225
char buf[256];
226
double res;
227
char *end;
0 commit comments