Commit f1e2415a authored by Steven Cole's avatar Steven Cole Committed by Ben Collins

[SPARC]: Fix non-ansi parameter lists.

parent a89c61eb
...@@ -105,7 +105,7 @@ prom_putchar(char c) ...@@ -105,7 +105,7 @@ prom_putchar(char c)
/* Query for input device type */ /* Query for input device type */
enum prom_input_device enum prom_input_device
prom_query_input_device() prom_query_input_device(void)
{ {
unsigned long flags; unsigned long flags;
int st_p; int st_p;
...@@ -155,7 +155,7 @@ prom_query_input_device() ...@@ -155,7 +155,7 @@ prom_query_input_device()
/* Query for output device type */ /* Query for output device type */
enum prom_output_device enum prom_output_device
prom_query_output_device() prom_query_output_device(void)
{ {
unsigned long flags; unsigned long flags;
int st_p; int st_p;
......
...@@ -76,7 +76,7 @@ prom_puts(char *s, int len) ...@@ -76,7 +76,7 @@ prom_puts(char *s, int len)
/* Query for input device type */ /* Query for input device type */
enum prom_input_device enum prom_input_device
prom_query_input_device() prom_query_input_device(void)
{ {
int st_p; int st_p;
char propb[64]; char propb[64];
...@@ -111,7 +111,7 @@ prom_query_input_device() ...@@ -111,7 +111,7 @@ prom_query_input_device()
/* Query for output device type */ /* Query for output device type */
enum prom_output_device enum prom_output_device
prom_query_output_device() prom_query_output_device(void)
{ {
int st_p; int st_p;
char propb[64]; char propb[64];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment