DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T s

⟦10ade1608⟧ TextFile

    Length: 1553 (0x611)
    Types: TextFile
    Names: »standenviron.h«

Derivation

└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./DVIware/laser-setters/quicspool/standard/standenviron.h« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦af5ba6c8e⟧ »unix3.0/DVIWARE.tar.Z« 
        └─⟦ca79c7339⟧ 
            └─⟦this⟧ »DVIware/laser-setters/quicspool/standard/standenviron.h« 

TextFile

/* $Header: standenviron.h,v 1.1 88/01/15 13:07:12 simpson Rel $ */
/*
$Log:	standenviron.h,v $
 * Revision 1.1  88/01/15  13:07:12  simpson
 * initial release
 * 
 * Revision 0.1  87/12/11  18:34:14  simpson
 * beta test
 * 
*/
/*
 * This file defines the machine/compiler C environment. It defines
 * pre-processor macros that tell what C features are supported.
 *
 * #define HAS_UNSIGNED_SHORT	Implies unsigned shorts are supported
 * #define CHAR_IS_SIGNED	Implies chars are signed
 * #define HAS_UNSIGNED_CHAR	Implies unsigned chars are supported
 * #define HAS_UNSIGNED_LONG	Implies unsigned longs are supported
 * #define BITS_PER_CHAR n	Number of bits in a char
 * #define BITS_PER_INT n	Number of bits in an int
 * #define BITS_PER_LONG n	Number of bits in a long
 * #define BITS_PER_POINTER n	Number of bits in a pointer
 * #define BITS_PER_SHORT n	Number of bits in a short
 * #define HAS_VOID		Implies void function type is supported
 */

#ifndef	STANDARD_ENVIRON	/* prevent multiple inclusions	*/

#if defined(vax) || defined(pyr) || defined(sun)
#   define HAS_UNSIGNED_SHORT
#   define CHAR_IS_SIGNED
#   define HAS_UNSIGNED_CHAR
#   define HAS_UNSIGNED_LONG
#   define HAS_VOID

#   define BITS_PER_CHAR 8
#   define BITS_PER_SHORT 16
#   define BITS_PER_INT 32
#   define BITS_PER_LONG 32
#   define BITS_PER_POINTER 32
#   define STANDARD_ENVIRON
#endif

#endif STANDARD_ENVIRON

/* make sure a known processor type was	specified */
#ifndef	STANDARD_ENVIRON
#   include "Processor type unknown or unspecified"
#endif STANDARD_ENVIRON