Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove redundant (and conflicting) function declarations
The function fchtak() is implemented earlier in the same file. There is therefore no need to declare the function later in the same file. The later declarations redefines the function with an empty parameter list, which conflicts with the original definition. The function stat() is defined by including <sys/stat.h>. The following daclaration redefines the function with an empty parameter list, which conflicts with the original definition. (cherry picked from commit d28f5ac)
- Loading branch information