~ubuntu-branches/ubuntu/intrepid/ruby1.9/intrepid-updates

« back to all changes in this revision

Viewing changes to id.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-09-04 16:01:17 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20070904160117-i15zckg2nhxe9fyw
Tags: 1.9.0+20070830-2ubuntu1
* Sync from Debian; remaining changes:
  - Add -g to CFLAGS.
* Fixes build failure on ia64.
* Fixes build failure with gcc-4.2 on lpia.
* Robustify check for target_os, fixing build failure on lpia.
* Set Ubuntu maintainer address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**********************************************************************
 
2
 
 
3
  id.h - 
 
4
 
 
5
  $Author: ko1 $
 
6
  $Date: $
 
7
  created at: Thu Jul 12 04:38:07 2007
 
8
 
 
9
  Copyright (C) 2007 Koichi Sasada
 
10
 
 
11
**********************************************************************/
 
12
 
 
13
extern VALUE symIFUNC;
 
14
extern VALUE symCFUNC;
 
15
 
 
16
extern ID idPLUS;
 
17
extern ID idMINUS;
 
18
extern ID idMULT;
 
19
extern ID idDIV;
 
20
extern ID idMOD;
 
21
extern ID idLT;
 
22
extern ID idLTLT;
 
23
extern ID idLE;
 
24
extern ID idGT;
 
25
extern ID idGE;
 
26
extern ID idEq;
 
27
extern ID idEqq;
 
28
extern ID idBackquote;
 
29
extern ID idEqTilde;
 
30
extern ID idThrowState;
 
31
extern ID idAREF;
 
32
extern ID idASET;
 
33
extern ID idIntern;
 
34
extern ID idMethodMissing;
 
35
extern ID idLength;
 
36
extern ID idGets;
 
37
extern ID idSucc;
 
38
extern ID idEach;
 
39
extern ID idLambda;
 
40
extern ID idRangeEachLT;
 
41
extern ID idRangeEachLE;
 
42
extern ID idArrayEach;
 
43
extern ID idTimes;
 
44
extern ID idEnd;
 
45
extern ID idBitblt;
 
46
extern ID idAnswer;
 
47
extern ID idSend;
 
48
extern ID idSendBang;
 
49
extern ID id__send;
 
50
extern ID id__send_bang;
 
51
extern ID id__send__;
 
52
 
 
53