~ubuntu-branches/ubuntu/oneiric/symmetrica/oneiric

« back to all changes in this revision

Viewing changes to debian/patches/macros-bugfix.patch

  • Committer: Bazaar Package Importer
  • Author(s): Tim Abbott
  • Date: 2008-06-25 16:17:23 UTC
  • Revision ID: james.westby@ubuntu.com-20080625161723-tnpo4x5gr0o0qlar
Tags: 2.0-1
Initial release (Closes: #480083).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Index: src/macro.h
 
2
===================================================================
 
3
--- src.orig/macro.h    2008-02-09 18:14:05.000000000 -0800
 
4
+++ src/macro.h 2008-02-09 18:14:10.000000000 -0800
 
5
@@ -14,7 +14,6 @@
 
6
 #endif
 
7
 
 
8
 
 
9
-
 
10
 #define S_O_S(a) (((OP)(a))->ob_self)
 
11
 #define S_O_K(a) (((OP)(a))->ob_kind)
 
12
 #define C_O_K(a,b) ((a)->ob_kind = (OBJECTKIND)(b))
 
13
@@ -171,7 +170,7 @@
 
14
 
 
15
 
 
16
 
 
17
-extern INT partition_speichersize,partition_speicherindex,mem_counter_part;
 
18
+extern long partition_speichersize,partition_speicherindex,mem_counter_part;
 
19
 extern struct partition **partition_speicher; 
 
20
 
 
21
 #define FREEPARTITION(d)\
 
22
@@ -266,7 +265,7 @@
 
23
       C_MO_K(c,b); \
 
24
 } while(0)
 
25
 
 
26
-extern INT monom_speicherindex,mem_counter_monom,monom_speichersize;
 
27
+extern long monom_speicherindex,mem_counter_monom,monom_speichersize;
 
28
 extern struct monom **monom_speicher;
 
29
 
 
30
 #define FREEMONOM(v) \
 
31
@@ -554,10 +553,10 @@
 
32
 
 
33
 /* for longint */
 
34
 
 
35
-extern INT loc_index, loc_size,loc_counter;
 
36
+extern long loc_index, loc_size,loc_counter;
 
37
 extern struct loc **loc_speicher;
 
38
 
 
39
-extern INT longint_speicherindex,mem_counter_loc,longint_speichersize;
 
40
+extern long longint_speicherindex,mem_counter_loc,longint_speichersize;
 
41
 extern struct longint **longint_speicher;
 
42
 
 
43