Remove broken declaration.

This commit is contained in:
Andreas Jaeger 2003-12-03 06:50:01 +00:00
parent 66f165c840
commit df1a47ae5d
2 changed files with 1 additions and 3 deletions

View File

@ -102,7 +102,6 @@ cat >>conftest.$ac_ext <<_ACEOF
#include <stdio.h>
void cl (void *a) { }
extern c (void);
int
main ()
{

View File

@ -36,8 +36,7 @@ dnl Check for C cleanup handling.
AC_CACHE_CHECK([for C cleanup handling], libc_cv_c_cleanup, [dnl
AC_TRY_LINK([
#include <stdio.h>
void cl (void *a) { }
extern c (void);], [
void cl (void *a) { }], [
int a __attribute__ ((cleanup (cl)));
puts ("test")],
libc_cv_c_cleanup=yes, libc_cv_c_cleanup=no)])