~ubuntu-branches/ubuntu/wily/gargoyle-free/wily-proposed

« back to all changes in this revision

Viewing changes to tads/tads2/beos/os0tc_beos.c

  • Committer: Bazaar Package Importer
  • Author(s): Sylvain Beucler
  • Date: 2009-09-11 20:09:43 UTC
  • Revision ID: james.westby@ubuntu.com-20090911200943-idgzoyupq6650zpn
Tags: upstream-2009-08-25
ImportĀ upstreamĀ versionĀ 2009-08-25

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
static char RCSid[] =
 
2
"$Header$";
 
3
 
 
4
/* 
 
5
 *   Copyright (c) 1992, 2002 Michael J. Roberts.  All Rights Reserved.
 
6
 *   
 
7
 *   Please see the accompanying license file, LICENSE.TXT, for information
 
8
 *   on using and copying this software.  
 
9
 */
 
10
/*
 
11
Name
 
12
  os0tc.c - os mainline for tads2 compiler
 
13
Function
 
14
  invokes compiler from operating system command line
 
15
Notes
 
16
  none
 
17
Modified
 
18
  04/02/92 MJRoberts     - creation
 
19
*/
 
20
 
 
21
#include "os.h"
 
22
 
 
23
int main(int argc, char** argv)
 
24
{
 
25
    int tcdmain(/*_ int argc, char *argv[] _*/);
 
26
    int err;
 
27
 
 
28
    os_init(&argc, argv, (char *)0, (char *)0, 0);
 
29
    err = os0main(argc, argv, tcdmain, "i", "config.tc");
 
30
    os_uninit();
 
31
    os_term(err);
 
32
        return err;
 
33
}