Changeset 282 for trunk/thune/math.c
- Timestamp:
- 09/24/06 04:43:27 (2 years ago)
- Files:
-
- 1 modified
-
trunk/thune/math.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/math.c
r273 r282 27 27 extern unsigned long genrand_int32(); 28 28 extern double genrand_real2(); 29 30 31 #ifdef LANG_RUNE 32 #define UR_CALL_P UR_CALL_PUB 33 #else 34 #define UR_CALL_P UR_CALL 35 #endif 29 36 30 37 … … 78 85 79 86 // (val val -- logic) 80 UR_CALL ( uc_gtQ )87 UR_CALL_P( uc_gtQ ) 81 88 { 82 89 int logic = ur_greaterThan( ur_s_prev(tos), tos ); … … 100 107 101 108 // (val val -- logic) 102 UR_CALL ( uc_ltQ )109 UR_CALL_P( uc_ltQ ) 103 110 { 104 111 int logic = ur_lessThan( ur_s_prev(tos), tos ); … … 149 156 150 157 151 #ifdef LANG_RUNE152 #define UR_CALL_P UR_CALL_PUB153 #else154 #define UR_CALL_P UR_CALL155 #endif156 157 158 // (number number -- sum) 158 159 UR_CALL_P( uc_add )
