diff options
author | Guido van Rossum <guido@python.org> | 1996-08-08 18:25:40 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-08 18:25:40 (GMT) |
commit | 47347f04258fc5d21673ab74725f0cda28c6d02f (patch) | |
tree | 9bb3811ade81db22873997c5faef72feccc1cf18 /Lib/generic | |
parent | d44e0c3acebb10c4d26d80d42ce8fc89cd5ed02d (diff) | |
download | cpython-47347f04258fc5d21673ab74725f0cda28c6d02f.zip cpython-47347f04258fc5d21673ab74725f0cda28c6d02f.tar.gz cpython-47347f04258fc5d21673ab74725f0cda28c6d02f.tar.bz2 |
Use fcntl.h instead of sys/fcntl.h; use h2py.py from Tools/scripts
Diffstat (limited to 'Lib/generic')
-rwxr-xr-x | Lib/generic/regen | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/generic/regen b/Lib/generic/regen index 8c81a5f..5c502c2 100755 --- a/Lib/generic/regen +++ b/Lib/generic/regen @@ -1,6 +1,6 @@ #! /bin/sh set -v -h2py /usr/include/sys/fcntl.h -h2py /usr/include/sys/socket.h -h2py -i '(u_long)' /usr/include/netinet/in.h -h2py /usr/include/termios.h +python ../../Tools/scripts/h2py.py /usr/include/fcntl.h +python ../../Tools/scripts/h2py.py /usr/include/sys/socket.h +python ../../Tools/scripts/h2py.py -i '(u_long)' /usr/include/netinet/in.h +python ../../Tools/scripts/h2py.py /usr/include/termios.h |