diff options
author | Guido van Rossum <guido@python.org> | 1990-10-30 13:34:38 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1990-10-30 13:34:38 (GMT) |
commit | 7f77e2d4f8cbb4de8405dd1d2d8c9272b1c9350a (patch) | |
tree | e996f14add1b9953cf491594eb1bedb4a4b32bec | |
parent | 14da5801040cca76c4b36bad113ccf740af53a88 (diff) | |
download | cpython-7f77e2d4f8cbb4de8405dd1d2d8c9272b1c9350a.zip cpython-7f77e2d4f8cbb4de8405dd1d2d8c9272b1c9350a.tar.gz cpython-7f77e2d4f8cbb4de8405dd1d2d8c9272b1c9350a.tar.bz2 |
Added prototype to declaration of strerror().
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index b4a1ff6..c2166dc 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -29,7 +29,7 @@ #include "modsupport.h" #include "errors.h" -extern char *strerror(); +extern char *strerror PROTO((int)); #ifdef AMOEBA #define NO_LSTAT |