summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-25 21:36:48 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-25 21:38:17 +0200
commitefcc334c9d419d3b05612f321730b6d13a697b96 (patch)
treef53694987230d07ff1b558c4ae580d0cc660fef0 /configure
parent5f44f47b7256659b45ae5e3edd558521fbf962e8 (diff)
parent9495cd170b5786c3518419e873d94eb5e7ada11a (diff)
Merge commit '9495cd170b5786c3518419e873d94eb5e7ada11a'
* commit '9495cd170b5786c3518419e873d94eb5e7ada11a': configure: Fix check_exec_crash for ICL support Conflicts: configure Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index faf318644a..6d09fa62ac 100755
--- a/configure
+++ b/configure
@@ -1014,10 +1014,10 @@ check_exec_crash(){
static void sighandler(int sig){
raise(SIGTERM);
}
-int func(void){
+int foo(void){
$code
}
-int (*func_ptr)(void) = func;
+int (*func_ptr)(void) = foo;
int main(void){
signal(SIGILL, sighandler);
signal(SIGFPE, sighandler);