~ubuntu-branches/ubuntu/quantal/pmccabe/quantal

« back to all changes in this revision

Viewing changes to dmain.h

  • Committer: Bazaar Package Importer
  • Author(s): Paul Bame
  • Date: 2003-03-12 14:05:33 UTC
  • Revision ID: james.westby@ubuntu.com-20030312140533-moud629bi4ryp48y
Tags: 2.2-3
tweek for running under buildd and whenever pmccabe not installed
and . not in $PATH

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (c) 2002 Hewlett-Packard under GPL version 2 or later */
 
2
/* $Id: dmain.h,v 1.8 2001/01/26 23:00:36 bame Exp $ */
 
3
#define EOINPUT 999
 
4
#define SIZE (1024 * 8)
 
5
extern short Pipe[SIZE];
 
6
extern short *Piperead;
 
7
extern short *Pipewrite;
 
8
extern short *Pipeend;
 
9
 
 
10
#define PUTCHAR(c)      {if (Pipewrite < Pipeend) *Pipewrite++ = (c);}
 
11
#define PUTS(s)         {char *a = s; while (*a != '\0') PUTCHAR(*a++);}
 
12
 
 
13
extern FILE *Input;
 
14
extern char Inputfile[1030];