diff options
author | Guido van Rossum <guido@python.org> | 1997-06-02 22:18:31 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-06-02 22:18:31 (GMT) |
commit | 21f8497a46f30eebe1ec2a6846dd899bb77bb675 (patch) | |
tree | dec1353d67f19f080d277166f337de3b48804e01 /Modules/getpath.c | |
parent | 91ba64ddd9d4835f1c48fbfabd8d1c24e2c777f2 (diff) | |
download | cpython-21f8497a46f30eebe1ec2a6846dd899bb77bb675.zip cpython-21f8497a46f30eebe1ec2a6846dd899bb77bb675.tar.gz cpython-21f8497a46f30eebe1ec2a6846dd899bb77bb675.tar.bz2 |
Use string.h, not strings.h
Diffstat (limited to 'Modules/getpath.c')
-rw-r--r-- | Modules/getpath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/getpath.c b/Modules/getpath.c index 8330cbf..b80dee5 100644 --- a/Modules/getpath.c +++ b/Modules/getpath.c @@ -36,7 +36,7 @@ PERFORMANCE OF THIS SOFTWARE. #include <sys/types.h> #include <sys/stat.h> -#include <strings.h> +#include <string.h> #if HAVE_UNISTD_H #include <unistd.h> |