Commit e1c35cd7 by Ian Lance Taylor

Don't name variables in mmap prototype.

From-SVN: r6789
parent 5366ab1d
......@@ -389,8 +389,7 @@ if [ \! -z "$file_to_fix" ]; then
chmod +w /tmp/$base
sed -e '/^extern caddr_t mmap();$/c\
#ifdef __STDC__\
extern caddr_t mmap (caddr_t addr, size_t len, int prot, int flags,\
int fd, off_t off);\
extern caddr_t mmap (caddr_t, size_t, int, int, int, off_t);\
#else /* !defined(__STDC__) */\
extern caddr_t mmap ();\
#endif /* !defined(__STDC__) */' /tmp/$base > /tmp/$base.sed
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment