Robert P. Day removed 8 gazillion occurrences of "extern" on function

definitions.  (That should only be on prototypes.)
This commit is contained in:
Rob Landley
2006-03-06 20:47:33 +00:00
parent 1f5e25bf3e
commit dfba741457
168 changed files with 199 additions and 199 deletions

View File

@@ -62,7 +62,7 @@ out:
}
extern int bb_copyfd_size(int fd1, int fd2, const off_t size)
int bb_copyfd_size(int fd1, int fd2, const off_t size)
{
if (size) {
return(bb_full_fd_action(fd1, fd2, size));
@@ -70,7 +70,7 @@ extern int bb_copyfd_size(int fd1, int fd2, const off_t size)
return(0);
}
extern int bb_copyfd_eof(int fd1, int fd2)
int bb_copyfd_eof(int fd1, int fd2)
{
return(bb_full_fd_action(fd1, fd2, 0));
}