Changeset 9d53d0 in git
- Timestamp:
- Jul 19, 2011, 10:09:01 AM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- cab375d56d605292e44b155cb07f350026731a7c
- Parents:
- 7d0225e5a511b7f22d8c67004515cac681735586
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-07-19 10:09:01+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:39:56+01:00
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_gmp.h
r7d0225 r9d53d0 3 3 4 4 5 #define __cplusplus_backup __cplusplus 6 #undef __cplusplus 7 extern "C" { 8 #include <gmp.h> 9 } 10 #define __cplusplus __cplusplus_backup 5 #ifdef _cplusplus 6 #define __cplusplus_backup __cplusplus 7 #undef __cplusplus 8 extern "C" { 9 #include <gmp.h> 10 } 11 #define __cplusplus __cplusplus_backup 12 #else 13 #include <gmp.h> 14 #endif 11 15 12 16 -
kernel/febase.h
r7d0225 r9d53d0 175 175 176 176 } 177 #endif178 177 const char * VoiceName(); 179 178 void VoiceBackTrack(); … … 189 188 190 189 #endif 190 #endif 191 191 -
kernel/structs.h
r7d0225 r9d53d0 11 11 /* for omBin */ 12 12 #include <omalloc/omalloc.h> 13 #include <misc/auxiliary.h> 13 14 #ifdef HAVE_RINGS 14 15 #include <kernel/si_gmp.h> 15 16 #endif 16 17 18 extern int dummy; 17 19 18 20 /* standard types */ … … 21 23 typedef mpz_ptr int_number; 22 24 #endif 23 #if (SIZEOF_LONG == 8)24 typedef int BOOLEAN;25 /* testet on x86_64, gcc 3.4.6: 2 % */26 /* testet on IA64, gcc 3.4.6: 1 % */27 #else28 /* testet on athlon, gcc 2.95.4: 1 % */29 typedef short BOOLEAN;30 #endif31 25 32 typedef void * ADDRESS;33 26 #define BITSET unsigned int 34 27 -
libpolys/resources/feResource.h
r7d0225 r9d53d0 16 16 #endif 17 17 18 18 #ifdef _cplusplus 19 19 /***************************************************************** 20 20 * … … 44 44 void feStringAppendResources(int warn = -1); 45 45 46 46 #endif 47 /* end ifdef _cplusplus */ 47 48 48 49 49 50 const char fePathSep = 50 / / not really cygwin, applies to all windows systems:51 /* not really cygwin, applies to all windows systems:*/ 51 52 #if (defined(CYGWIN) || defined(ix86_Win)) 52 53 ';'
Note: See TracChangeset
for help on using the changeset viewer.