1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
head 1.1;
access
archiv
john
wulff;
symbols;
locks; strict;
comment @# Master with a nonempty access list.@;
1.1
date 2013.09.10.08.31.47; author jw; state Exp;
branches;
next ;
desc
@pplc
@
1.1
log
@use cexe_t.c as a template for cexe.c to bootstrap icr and ict
@
text
@static const char cexe_t_c[] =
"@@(#)$Id$";
/********************************************************************
*
* Copyright (C) 1985-2013 John E. Wulff
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
*
* For more information about this program, or for information on how
* to contact the author, see the README file
*
* cexe_t.c
* template for cexe.c to bootstrap icr and ict
* if cexe.c does not exist
*
*******************************************************************/
#include <stdio.h>
#include <signal.h>
#include "icc.h"
#include "comp.h"
#if INT_MAX == 32767 && defined (LONG16)
long
#else
int
#endif
iC_exec(int iC_indx, iC_Gt * iC_gf)
{
fflush(iC_outFP);
fprintf(iC_errFP,
"\n*** Error: cexe.c: does not support arithmetic expressions yet.\n"
"*** Rebuild compilers using '%s -c -%sO%o %s; m -rt'\n"
, iC_progname, iC_gflag ? "g" : "", iC_optimise, inpNM);
iC_quit(SIGUSR1);
return 0; /* never gets here */
} /* iC_exec */
@
|