diff options
author | Ian Lynagh <igloo@earth.li> | 2011-08-01 01:07:12 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-08-01 01:07:12 +0100 |
commit | 96ebe2fa43b9ee98cd82d31760c57db0fea18495 (patch) | |
tree | 93e6995b75c08c84f2e7fc908ec3634cd64b0e92 /rts/hooks | |
parent | b4a01788a1a833de64cba041c796fa35e0275220 (diff) | |
download | haskell-96ebe2fa43b9ee98cd82d31760c57db0fea18495.tar.gz |
Remove some antiquated C constructs
Fixes validate on amd64/Linux with:
SRC_CC_OPTS += -Wmissing-parameter-type
SRC_CC_OPTS += -Wold-style-declaration
SRC_CC_OPTS += -Wold-style-definition
Diffstat (limited to 'rts/hooks')
-rw-r--r-- | rts/hooks/OnExit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/hooks/OnExit.c b/rts/hooks/OnExit.c index e8019c046b..30764acba2 100644 --- a/rts/hooks/OnExit.c +++ b/rts/hooks/OnExit.c @@ -15,6 +15,6 @@ */ void -OnExitHook () +OnExitHook (void) { } |