summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-08-15 02:52:08 (GMT)
committerGuido van Rossum <guido@python.org>1997-08-15 02:52:08 (GMT)
commit7c14103d77e02f3ee66d39d15fda6090ab2965f7 (patch)
tree00a62840f6ed995a8d8824cc45515caa3c3a946c /Modules
parentf0b69f01eba87dcd56b9ed0a5be2fd7149f20b7a (diff)
downloadcpython-7c14103d77e02f3ee66d39d15fda6090ab2965f7.zip
cpython-7c14103d77e02f3ee66d39d15fda6090ab2965f7.tar.gz
cpython-7c14103d77e02f3ee66d39d15fda6090ab2965f7.tar.bz2
Keep gcc -Wall happy
Diffstat (limited to 'Modules')
-rw-r--r--Modules/fcntlmodule.c1
-rw-r--r--Modules/python.c1
-rw-r--r--Modules/reopmodule.c2
3 files changed, 2 insertions, 2 deletions
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c
index e951bc4..8f7407f 100644
--- a/Modules/fcntlmodule.c
+++ b/Modules/fcntlmodule.c
@@ -279,6 +279,7 @@ all_ins(d)
if (ins(d, "LOCK_EX", (long)LOCK_EX)) return -1;
if (ins(d, "LOCK_NB", (long)LOCK_NB)) return -1;
if (ins(d, "LOCK_UN", (long)LOCK_UN)) return -1;
+ return 0;
}
void
diff --git a/Modules/python.c b/Modules/python.c
index 8a638c7..83e7b07 100644
--- a/Modules/python.c
+++ b/Modules/python.c
@@ -2,6 +2,7 @@
extern int Py_Main();
+int
main(argc, argv)
int argc;
char **argv;
diff --git a/Modules/reopmodule.c b/Modules/reopmodule.c
index f36647e..13ef95e 100644
--- a/Modules/reopmodule.c
+++ b/Modules/reopmodule.c
@@ -62,8 +62,6 @@ static PyObject *ReopError; /* Exception */
#define BEGINNING_OF_BUFFER 7
#define END_OF_BUFFER 8
-static unsigned char *reop_casefold;
-
static PyObject *
makeresult(regs, num_regs)
struct re_registers *regs;