~ubuntu-branches/ubuntu/oneiric/clif/oneiric

« back to all changes in this revision

Viewing changes to virtual_machine.h

  • Committer: Bazaar Package Importer
  • Author(s): Adrian Bunk
  • Date: 2002-01-25 14:05:49 UTC
  • Revision ID: james.westby@ubuntu.com-20020125140549-v5mmddxqlcrgzhd2
Tags: upstream-0.93
ImportĀ upstreamĀ versionĀ 0.93

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Clif - A C-like Interpreter Framework
 
3
    Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997 T. Hruz, L. Koren
 
4
 
 
5
    This program is free software; you can redistribute it and/or modify
 
6
    it under the terms of the GNU General Public License as published by
 
7
    the Free Software Foundation; either version 2 of the License, or
 
8
    (at your option) any later version.
 
9
 
 
10
    This program is distributed in the hope that it will be useful,
 
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
    GNU General Public License for more details.
 
14
 
 
15
    You should have received a copy of the GNU General Public License
 
16
    along with this program; if not, write to the Free Software
 
17
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
 
 
19
*/
 
20
 
 
21
/*
 
22
 * virtual_machine.h
 
23
 */
 
24
 
 
25
#ifndef _VIRTUAL_MACHINE_H
 
26
#define _VIRTUAL_MACHINE_H
 
27
 
 
28
#ifndef PROTO
 
29
#if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined(__STDC__)
 
30
#define PROTO(ARGS) ARGS
 
31
#else
 
32
#define PROTO(ARGS) ()
 
33
#endif 
 
34
#endif
 
35
 
 
36
int exec PROTO((void));       /* Code execution. */
 
37
 
 
38
#endif