View | Details | Raw Unified | Return to bug 237602
Collapse All | Expand All

(-)configure (-6 / +6 lines)
Lines 6192-6199 else Link Here
6192
    CFLAGS="$CFLAGS -Wall -Werror"
6192
    CFLAGS="$CFLAGS -Wall -Werror"
6193
    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6193
    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6194
/* end confdefs.h.  */
6194
/* end confdefs.h.  */
6195
void *test(void) __attribute__ ((__malloc__));
6195
void *test(void *x) __attribute__ ((__malloc__));
6196
	 void *test(void) { return (void *)0; }
6196
	 void *test(void *x) { return (void *)0; }
6197
6197
6198
_ACEOF
6198
_ACEOF
6199
if ac_fn_c_try_compile "$LINENO"; then :
6199
if ac_fn_c_try_compile "$LINENO"; then :
Lines 6226-6233 else Link Here
6226
    CFLAGS="$CFLAGS -Wall -Werror"
6226
    CFLAGS="$CFLAGS -Wall -Werror"
6227
    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6227
    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6228
/* end confdefs.h.  */
6228
/* end confdefs.h.  */
6229
void *test(void) __attribute__ ((__nonnull__));
6229
void *test(void *x) __attribute__ ((__nonnull__));
6230
	 void *test(void) { return (void *)0; }
6230
	 void *test(void *x) { return (void *)0; }
6231
6231
6232
_ACEOF
6232
_ACEOF
6233
if ac_fn_c_try_compile "$LINENO"; then :
6233
if ac_fn_c_try_compile "$LINENO"; then :
Lines 6260-6267 else Link Here
6260
    CFLAGS="$CFLAGS -Wall -Werror"
6260
    CFLAGS="$CFLAGS -Wall -Werror"
6261
    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6261
    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6262
/* end confdefs.h.  */
6262
/* end confdefs.h.  */
6263
void *test(void) __attribute__ ((__warn_unused_result__));
6263
void *test(void *x) __attribute__ ((__warn_unused_result__));
6264
	 void *test(void) { return (void *)0; }
6264
	 void *test(void *x) { return (void *)0; }
6265
6265
6266
_ACEOF
6266
_ACEOF
6267
if ac_fn_c_try_compile "$LINENO"; then :
6267
if ac_fn_c_try_compile "$LINENO"; then :

Return to bug 237602