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:
John-Mark Gurney 2015-07-18 22:47:46 +00:00
parent c09626461f
commit 02bee582d0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=285683
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);