summaryrefslogtreecommitdiff
path: root/x11perf.h
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-01-20 23:22:29 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-01-20 23:22:29 -0800
commit47479aabdb82907929d76ac87ca71f44819791f8 (patch)
tree42ec9b3060fb7e4efe017b0b9e893bdac2bdacf7 /x11perf.h
parent5340bddccdd21fd34aae996ac3347ddb71f00de6 (diff)
Mark usage & AbortTest as _X_NORETURN
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'x11perf.h')
-rw-r--r--x11perf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/x11perf.h b/x11perf.h
index 60b19bf..3d9c8ad 100644
--- a/x11perf.h
+++ b/x11perf.h
@@ -135,7 +135,7 @@ extern Test test[];
extern int abortTest;
-extern void AbortTest (void);
+extern void AbortTest (void) _X_NORETURN;
#define CheckAbort() if (abortTest) AbortTest ()
#define ForEachTest(x) for (x = 0; test[x].option != NULL; x++)