
Changed all K&R style functions to ANSI-style declarations within the kernel directory. The code compiles and aparently works for i386. For arm my toolchain does not work, but I have changed the code with great care. Also, the make command fails for the test suite. Therefore, I strongly recommand to review the code with care. Edited by David van Moolenbroek to convert really all K&R functions. Change-Id: I58cde797d36f4caa9c72db4e4dc27d8545ab8866
8 lines
108 B
C
8 lines
108 B
C
#ifndef _BSP_INIT_H_
|
|
#define _BSP_INIT_H_
|
|
|
|
/* BSP init */
|
|
void bsp_init(void);
|
|
|
|
#endif /* __BSP_INIT_H__ */
|