summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/cpu/unix/unixtypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/score/cpu/unix/unixtypes.h')
-rw-r--r--c/src/exec/score/cpu/unix/unixtypes.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/c/src/exec/score/cpu/unix/unixtypes.h b/c/src/exec/score/cpu/unix/unixtypes.h
index 4d0337ec0c..4c57ab8c64 100644
--- a/c/src/exec/score/cpu/unix/unixtypes.h
+++ b/c/src/exec/score/cpu/unix/unixtypes.h
@@ -44,7 +44,9 @@ typedef unsigned32 boolean; /* Boolean value */
typedef float single_precision; /* single precision float */
typedef double double_precision; /* double precision float */
-typedef void ( *unix_isr )( void );
+typedef void unix_isr;
+
+typedef unix_isr ( *unix_isr_entry )( void );
#ifdef __cplusplus
}