~ubuntu-branches/ubuntu/trusty/ruby1.9/trusty

« back to all changes in this revision

Viewing changes to insnhelper.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2008-05-16 12:37:06 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20080516123706-r4llcdfd35aobrjv
Tags: 1.9.0.1-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Robustify check for target_os, fixing build failure on lpia.
* debian/control:
  - ruby1.9 pkg: moved rdoc1.9 suggestion to depends. (LP: #228345)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
  insnhelper.h - helper macros to implement each instructions
4
4
 
5
 
  $Author: ko1 $
6
 
  $Date: 2007-11-14 07:13:04 +0900 (Wed, 14 Nov 2007) $
 
5
  $Author: nobu $
7
6
  created at: 04/01/01 15:50:34 JST
8
7
 
9
8
  Copyright (C) 2004-2007 Koichi Sasada
10
9
 
11
10
**********************************************************************/
12
11
 
13
 
#ifndef _INSNHELPER_H_INCLUDED_
14
 
#define _INSNHELPER_H_INCLUDED_
 
12
#ifndef RUBY_INSNHELPER_H
 
13
#define RUBY_INSNHELPER_H
15
14
 
16
15
#include "ruby/ruby.h"
17
16
#include "ruby/node.h"
146
145
    CALL_METHOD(num, 0, 0, id, rb_method_node(klass, id), recv, CLASS_OF(recv)); \
147
146
} while (0)
148
147
 
149
 
#endif /* _INSNHELPER_H_INCLUDED_ */
 
148
#endif /* RUBY_INSNHELPER_H */