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

@@ -25,7 +25,7 @@
#define CDROMEJECT 0x5309 /* Ejects the cdrom media */
#define DEFAULT_CDROM "/dev/cdrom"
extern int eject_main(int argc, char **argv)
int eject_main(int argc, char **argv)
{
unsigned long flags;
char *device;

View File

@@ -43,7 +43,7 @@
#error struct utmp member char[] size(s) have changed!
#endif
extern int last_main(int argc, char **argv)
int last_main(int argc, char **argv)
{
struct utmp ut;
int n, file = STDIN_FILENO;

View File

@@ -77,7 +77,7 @@ int makedevs_main(int argc, char **argv)
/* Licensed under the GPL v2 or later, see the file LICENSE in this tarball. */
extern int makedevs_main(int argc, char **argv)
int makedevs_main(int argc, char **argv)
{
FILE *table = stdin;
char *rootdir = NULL;

View File

@@ -50,7 +50,7 @@ static const struct mt_opcodes opcodes[] = {
{0, 0}
};
extern int mt_main(int argc, char **argv)
int mt_main(int argc, char **argv)
{
const char *file = "/dev/tape";
const struct mt_opcodes *code = opcodes;

View File

@@ -456,7 +456,7 @@ static void run_command (char *const *cmd, resource_t *resp)
signal (SIGQUIT, quit_signal);
}
extern int time_main (int argc, char **argv)
int time_main (int argc, char **argv)
{
int gotone;
resource_t res;