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

« back to all changes in this revision

Viewing changes to terps/agility/agilstub.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
/*  agilcomp.c-- Stubs for routines defined in agil but   */
 
2
/*    refered to elsewhere.                               */
 
3
/* Copyright (C) 1996-1999,2001  Robert Masenten          */
 
4
/* This program may be redistributed under the terms of the
 
5
   GNU General Public License, version 2; see agility.h for details. */
 
6
 
 
7
/* This is part of the source for AGiliTy: the (Mostly)   */
 
8
/*    Universal AGT Interpreter */
 
9
 
 
10
#include "agility.h"
 
11
 
 
12
void debugout(const char *s)
 
13
{
 
14
  fputs(s,stdout);
 
15
}
 
16
 
 
17
void writestr(const char *s)
 
18
{
 
19
  fputs(s,stdout);
 
20
}
 
21
 
 
22
void writeln(const char *s)
 
23
{
 
24
  printf("%s\n",s);
 
25
}
 
26
 
 
27
void agil_option(int optnum,char *optstr[], rbool setflag, rbool lastpass)
 
28
{
 
29
  /* Do nothing; this is just a place holder */
 
30
}
 
31
 
 
32
void close_interface(void)
 
33
{
 
34
}
 
35
 
 
36