cfad47cfa3/t2compiler/tads2/tcgdum.c

4b825dc642cb6eb9a060e54bf8d69288fbee4904cfad47cfa334b206c65f22086bcc5d63e6f70944
1
/* 
2
 *   Copyright (c) 1992, 2002 Michael J. Roberts.  All Rights Reserved.
3
 *   
4
 *   Please see the accompanying license file, LICENSE.TXT, for information
5
 *   on using and copying this software.  
6
 */
7
/*
8
Name
9
  tcgdum.c - stub for tcg routines
10
Function
11
  Provides link-time resolution of tcg symbols
12
Notes
13
  These routines do nothing; they are merely to allow linking the
14
  normal TADS/Compiler without having to have separate drivers for
15
  the graphical and non-graphical versions.
16
Modified
17
  04/11/99 CNebel        - Improve const-ness; use new headers.
18
  12/16/92 MJRoberts     - creation
19
*/
20
21
#include "os.h"
22
#include "err.h"
23
#include "prs.h"
24
#include "tcg.h"
25
26
/* name of the compiler (for banner) - this is the normal text compiler */
27
char tcgname[] = "TADS Compiler";
28
29
/* tcgcomp - graphical phase of compilation: do nothing in text version */
30
void tcgcomp(errcxdef *ec, prscxdef *pctx, const char *infile)
31
{
32
}
33