*** empty log message ***

From-SVN: r1169
This commit is contained in:
Richard Stallman 1992-06-06 03:55:06 +00:00
parent 629af8db53
commit dafda938de
2 changed files with 12 additions and 0 deletions

View File

@ -59,9 +59,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
This is only done when compiling the trampoline code. */ This is only done when compiling the trampoline code. */
#ifdef L_trampoline #ifdef L_trampoline
#include <types.h>
#include <unistd.h> #include <unistd.h>
#ifdef _SC_PAGE_SIZE
#define getpagesize() sysconf(_SC_PAGE_SIZE) #define getpagesize() sysconf(_SC_PAGE_SIZE)
#else /* older rev of OS */
#define getpagesize() (NBPC)
#endif /* !_SC_PAGE_SIZE */
#endif /* L_trampoline */ #endif /* L_trampoline */
#include "mips.h" #include "mips.h"

View File

@ -55,9 +55,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
This is only done when compiling the trampoline code. */ This is only done when compiling the trampoline code. */
#ifdef L_trampoline #ifdef L_trampoline
#include <types.h>
#include <unistd.h> #include <unistd.h>
#ifdef _SC_PAGE_SIZE
#define getpagesize() sysconf(_SC_PAGE_SIZE) #define getpagesize() sysconf(_SC_PAGE_SIZE)
#else /* older rev of OS */
#define getpagesize() (NBPC)
#endif /* !_SC_PAGE_SIZE */
#endif /* L_trampoline */ #endif /* L_trampoline */
/* Generate calls to memcpy, etc., not bcopy, etc. */ /* Generate calls to memcpy, etc., not bcopy, etc. */