Commit 346b07de by Richard Stallman

Include xm-svr3.h. Move tm.h include earlier.

(HOST_BITS_PER_LONGLONG, HOST_WORDS_BIG_ENDIAN): Defined.
(USG, bcopy, bzero, bcmp): Deleted.
(alloca): Definition moved before tm.h.

From-SVN: r3476
parent 870cc33b
...@@ -28,31 +28,31 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -28,31 +28,31 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define HOST_BITS_PER_SHORT 16 #define HOST_BITS_PER_SHORT 16
#define HOST_BITS_PER_INT 32 #define HOST_BITS_PER_INT 32
#define HOST_BITS_PER_LONG 32 #define HOST_BITS_PER_LONG 32
#define HOST_BITS_PER_LONGLONG 64
#define HOST_WORDS_BIG_ENDIAN
/* Arguments to use with `exit'. */ /* Arguments to use with `exit'. */
#define SUCCESS_EXIT_CODE 0 #define SUCCESS_EXIT_CODE 0
#define FATAL_EXIT_CODE 33 #define FATAL_EXIT_CODE 33
#define USG /* If compiled with GNU C, use the built-in alloca */
#ifdef __GNUC__
/* Don't try to use sys_siglist. */ #define alloca(x) __builtin_alloca(x)
#define NO_SYS_SIGLIST #endif
/* Don't try including wait.h. */
#define NO_WAIT_H
/* target machine dependencies. /* target machine dependencies.
tm.h is a symbolic link to the actual target specific file. */ tm.h is a symbolic link to the actual target specific file. */
#include "tm.h" #include "tm.h"
#define bcopy(a,b,c) memcpy (b,a,c) /* Don't try to use sys_siglist. */
#define bzero(a,b) memset (a,0,b) #define NO_SYS_SIGLIST
#define bcmp(a,b,c) memcmp (a,b,c)
#ifdef __GNUC__ /* Don't try including wait.h. */
#define alloca(n) __builtin_alloca(n) #define NO_WAIT_H
#endif
#ifndef MAXPATHLEN #ifndef MAXPATHLEN
#define MAXPATHLEN 512 #define MAXPATHLEN 512
#endif #endif
#include "xm-svr3.h"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment