diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-02-23 10:09:59 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-02-23 10:10:02 -0800 |
commit | ccd5cd064817595cfd0e04a926b73fb17fe31092 (patch) | |
tree | 9554f4bb3489c696ef393065e3020544e607a25f /x11perf.c | |
parent | b1f22217f6c513be07612d8ed88fe5540ce7be48 (diff) |
Assume signal handlers return void, as C89 requires
Drops use of autoconf's obsolete AC_TYPE_SIGNAL
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'x11perf.c')
-rw-r--r-- | x11perf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -438,7 +438,7 @@ Open_Display(char *display_name) return(d); } -static RETSIGTYPE +static void Cleanup(int sig) { abortTest = sig; |