(USE_C_ALLOCA): Define.

From-SVN: r7759
This commit is contained in:
Torbjorn Granlund 1994-07-13 11:09:55 +00:00
parent 4ac3d99407
commit b87ef81e35
2 changed files with 10 additions and 0 deletions

View File

@ -51,3 +51,8 @@ extern int errno;
/* HP's compiler has problems with enum bitfields. */
#define ONLY_INT_FIELDS
/* If not compiled with GNU C, use C alloca. */
#ifndef __GNUC__
#define USE_C_ALLOCA
#endif

View File

@ -61,3 +61,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* HP's compiler has problems with enum bitfields. */
#define ONLY_INT_FIELDS
/* If not compiled with GNU C, use C alloca. */
#ifndef __GNUC__
#define USE_C_ALLOCA
#endif