[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: hp cc +O3 and AC_CHECK_FUNCS
From: |
Paul Eggert |
Subject: |
Re: hp cc +O3 and AC_CHECK_FUNCS |
Date: |
Tue, 12 Nov 2002 12:20:16 -0800 (PST) |
> From: Akim Demaille <address@hidden>
> Date: 12 Nov 2002 12:09:09 +0100
>
> But Paul's opinion is, as always, valuable here.
Why not bypass all that stuff, and replace these external declarations:
char $1 ();
char (*f) ();
with these:
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_$1) || defined (__stub___$1)
choke me
#else
char $1 ();
char (*f) () = $1;
#endif
Then we can remove the contents of 'main', and not worry about the
HP-UX compiler's problems.