move the prototype to the lib.h header.. This makes more sense, and

it's an API between boot2.c and arm_init.S which calls it..
This commit is contained in:
jmg 2015-07-18 22:47:46 +00:00
parent 1c6ba1ec44
commit 0d030c5deb
2 changed files with 2 additions and 2 deletions

View File

@ -152,8 +152,6 @@ getstr(int c)
}
}
int main(void);
int
main(void)
{

View File

@ -30,6 +30,8 @@
#include <sys/cdefs.h>
#include <sys/param.h>
int main(void);
void DELAY(int);
int getc(int);