1
0
Files
irix-657m-src/eoe/cmd/sh/mac.h
2022-09-29 17:59:04 +03:00

37 lines
739 B
C

/* Copyright (c) 1990, 1991 UNIX System Laboratories, Inc. */
/* Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T */
/* All Rights Reserved */
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF */
/* UNIX System Laboratories, Inc. */
/* The copyright notice above does not evidence any */
/* actual or intended publication of such source code. */
#ident "@(#)sh:mac.h 1.8.3.1"
/*
* UNIX shell
*/
#define TRUE (-1)
#define FALSE 0
#define LOBYTE 0377
#define QUOTE 0200
#ifndef EOF
#define EOF 0
#endif
#define NL '\n'
#define SP ' '
#define LQ '`'
#define RQ '\''
#define MINUS '-'
#define COLON ':'
#define TAB '\t'
#define blank() prc(SP)
#define tab() prc(TAB)
#define newline() prc(NL)