diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-10-08 08:13:13 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-10-08 08:13:13 -0400 |
commit | b2fd1f3a3bec5dbe883ad1b1fba2adc23babbf78 (patch) | |
tree | d0a5f3289bef0fb645957cfc844bc2f71751a562 /src/output.c | |
parent | 9ed6b62c32a42060c9732562d72d17a643ac2b69 (diff) | |
download | seabios-b2fd1f3a3bec5dbe883ad1b1fba2adc23babbf78.tar.gz |
Add VAR16VISIBLE to debuginfo - older gcc doesn't optimize out.
Diffstat (limited to 'src/output.c')
-rw-r--r-- | src/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output.c b/src/output.c index 32d10208..b5b7d52f 100644 --- a/src/output.c +++ b/src/output.c @@ -84,7 +84,7 @@ putc_debug(struct putcinfo *action, char c) debug_serial(c); } -static struct putcinfo debuginfo = { putc_debug }; +struct putcinfo debuginfo VAR16VISIBLE = { putc_debug }; /**************************************************************** |