Robert P. Day removed 8 gazillion occurrences of "extern" on function
definitions. (That should only be on prototypes.)
This commit is contained in:
@@ -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;
|
||||
|
@@ -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;
|
||||
|
@@ -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;
|
||||
|
@@ -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;
|
||||
|
@@ -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;
|
||||
|
Reference in New Issue
Block a user