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

@ -27,7 +27,7 @@
#include "busybox.h"
extern int clear_main(int argc, char **argv)
int clear_main(int argc, char **argv)
{
return printf("\033[H\033[J") != 6;
}

View file

@ -39,7 +39,7 @@ struct psf_header {
static void loadnewfont(int fd);
extern int loadfont_main(int argc, char **argv)
int loadfont_main(int argc, char **argv)
{
int fd;

View file

@ -28,7 +28,7 @@
#include <unistd.h>
#include "busybox.h"
extern int reset_main(int argc, char **argv)
int reset_main(int argc, char **argv)
{
if (isatty(1)) {
/* See 'man 4 console_codes' for details: