35 lines
626 B
C
35 lines
626 B
C
/* @(#)mac.h 1.1 92/07/30 SMI; from S5R3.1 1.8 */
|
|
|
|
/* Copyright (c) 1984 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
/*
|
|
* UNIX shell
|
|
*/
|
|
|
|
#define TRUE (-1)
|
|
#define FALSE 0
|
|
#define LOBYTE 0377
|
|
#define QUOTE 0200
|
|
|
|
#define EOF 0
|
|
#define NL '\n'
|
|
#define SP ' '
|
|
#define LQ '`'
|
|
#define RQ '\''
|
|
#define MINUS '-'
|
|
#define COLON ':'
|
|
#define TAB '\t'
|
|
|
|
|
|
#define MAX(a,b) ((a)>(b)?(a):(b))
|
|
|
|
#define blank() prc(SP)
|
|
#define tab() prc(TAB)
|
|
#define newline() prc(NL)
|
|
|