summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-01-05 19:58:41 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-01-05 19:58:41 +0000
commite64a143b2710100d390c7f3c7e96e54147fb26b2 (patch)
tree5930fcb0d2bb67d2d71a806d3b2d90e244c24d74 /cpukit
parent2009-01-05 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-e64a143b2710100d390c7f3c7e96e54147fb26b2.tar.bz2
2009-01-05 Joel Sherrill <joel.sherrill@oarcorp.com>
* varvects.h: Fix prototype.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/score/cpu/m32c/ChangeLog4
-rw-r--r--cpukit/score/cpu/m32c/varvects.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/cpukit/score/cpu/m32c/ChangeLog b/cpukit/score/cpu/m32c/ChangeLog
index 39aa24db77..8277b83484 100644
--- a/cpukit/score/cpu/m32c/ChangeLog
+++ b/cpukit/score/cpu/m32c/ChangeLog
@@ -1,3 +1,7 @@
+2009-01-05 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * varvects.h: Fix prototype.
+
2008-10-28 Joel Sherrill <joel.sherrill@oarcorp.com>
* context_init.c, context_switch.S, cpu.c, cpu_asm.c: Correct file
diff --git a/cpukit/score/cpu/m32c/varvects.h b/cpukit/score/cpu/m32c/varvects.h
index e48daf9a52..ae24b006f8 100644
--- a/cpukit/score/cpu/m32c/varvects.h
+++ b/cpukit/score/cpu/m32c/varvects.h
@@ -36,7 +36,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef _VARVECTS_H_
#define _VARVECTS_H_
-typedef void (*_m32c_interrupt_func)() __attribute__((mode(SI)));
+typedef void (*_m32c_interrupt_func)(void) __attribute__((mode(SI)));
extern _m32c_interrupt_func _var_vects[];
#if defined(__r8c_cpu__) || defined (__m16c_cpu__)