Mercurial > emacs
changeset 3055:6e19d9e130c0
Changes for OSF/1:
* mem-limits.h [__osf__ && (__mips || mips)]: #include
<sys/time.h> and <sys/resource.h>.
(get_lim_data): OSF wants a definition like BSD4_2's.
* s/osf1.h: #include "bsd4-3.h", not "s-bsd4-3.h".
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Tue, 25 May 1993 03:05:38 +0000 |
parents | 57814bb76b37 |
children | 2edea0c54dc3 |
files | src/mem-limits.h src/s/osf1.h |
diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/mem-limits.h Tue May 25 02:53:28 1993 +0000 +++ b/src/mem-limits.h Tue May 25 03:05:38 1993 +0000 @@ -17,6 +17,11 @@ along with GNU Emacs; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#if defined(__osf__) && (defined(__mips) || defined(mips)) +#include <sys/time.h> +#include <sys/resource.h> +#endif + #ifndef BSD4_2 #ifndef USG #include <sys/vlimit.h> @@ -95,7 +100,7 @@ } #else /* not USG */ -#ifndef BSD4_2 +#if !defined(BSD4_2) && !defined(__osf__) static void get_lim_data ()