source: trunk/third/cns/src/include/c-ultmips.h @ 8789

Revision 8789, 736 bytes checked in by ghudson, 28 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r8788, which included commits to RCS files with non-trunk default branches.
Line 
1/*
2 * c-ultmips.h
3 *
4 * Copyright 1988 by the Massachusetts Institute of Technology.
5 *
6 * For copying and distribution information, please see the file
7 * <mit-copyright.h>.
8 *
9 * Machine-type definitions: DECstation 3100 (MIPS R2000)
10 */
11 
12#include "mit-copyright.h"
13 
14#define MIPS2
15#define BITS32
16#define BIG
17#define LSBFIRST
18#define HOST_BYTE_ORDER LSB_FIRST
19#define BSDUNIX
20#define MUSTALIGN
21typedef void sigtype;   /* Signal handler functions are declared "void".  */
22
23/*
24 * These are not defined for at least SunOS 3.3, Ultrix 2.2, and A/UX 2.0
25 */
26#if defined(ULTRIX022)
27#define FD_ZERO(p)      ((p)->fds_bits[0] = 0)
28#define FD_SET(n, p)    ((p)->fds_bits[0] |= (1 << (n)))
29#define FD_ISSET(n, p)  ((p)->fds_bits[0] & (1 << (n)))
30#endif
31
Note: See TracBrowser for help on using the repository browser.