comparison src/m/ibmrt-aix.h @ 44601:4be8406ebef9

Don't define HAVE_ALLOCA, C_ALLOCA and STACK_DIRECTION, now set by autoconf.
author Andreas Schwab <schwab@suse.de>
date Mon, 15 Apr 2002 13:23:33 +0000
parents d5b993b86f16
children 23a1cea22d13
comparison
equal deleted inserted replaced
44600:42f01619b785 44601:4be8406ebef9
1 /* RTPC AIX machine/system dependent defines 1 /* RTPC AIX machine/system dependent defines
2 Copyright (C) 1988, 1999 Free Software Foundation, Inc. 2 Copyright (C) 1988, 1999, 2002 Free Software Foundation, Inc.
3 3
4 This file is part of GNU Emacs. 4 This file is part of GNU Emacs.
5 5
6 GNU Emacs is free software; you can redistribute it and/or modify 6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by 7 it under the terms of the GNU General Public License as published by
84 84
85 /* This is the offset of the executable's text, from the start of the file. */ 85 /* This is the offset of the executable's text, from the start of the file. */
86 86
87 #define A_TEXT_SEEK(HDR) (N_TXTOFF (hdr) + sizeof (hdr)) 87 #define A_TEXT_SEEK(HDR) (N_TXTOFF (hdr) + sizeof (hdr))
88 88
89 /* Define C_ALLOCA if this machine does not support a true alloca
90 and the one written in C should be used instead.
91 Define HAVE_ALLOCA to say that the system provides a properly
92 working alloca function and it should be used.
93 Define neither one if an assembler-language alloca
94 in the file alloca.s should be used. */
95
96 #define C_ALLOCA
97 #define STACK_DIRECTION -1 /* tell alloca.c which way it grows */
98
99 /* AIX has PTYs, so define here, along with macros needed to make them work. */ 89 /* AIX has PTYs, so define here, along with macros needed to make them work. */
100 90
101 #define HAVE_PTYS 91 #define HAVE_PTYS
102 #define PTY_ITERATION for (i=0; i<256; i++) 92 #define PTY_ITERATION for (i=0; i<256; i++)
103 #define PTY_NAME_SPRINTF sprintf (ptyname, "/dev/ptc%d", i); 93 #define PTY_NAME_SPRINTF sprintf (ptyname, "/dev/ptc%d", i);