Changeset 3a4bda in git
- Timestamp:
- Mar 25, 2010, 3:59:46 PM (13 years ago)
- Branches:
- (u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
- Children:
- 8dff4e49d0ef118183e25bfaa62ce600a66f2ae7
- Parents:
- ebcfee32a6e13565d1f41295e1f0e2eb13a96e9c
- git-author:
- Hans Schönemann <hannes@mathematik.uni-kl.de>2010-03-25 15:59:46+01:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:35:58+01:00
- Files:
-
- 5 added
- 2 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
rebcfee3 r3a4bda 2 2 *.dd 3 3 *.[oa] 4 *.o_ndebug 4 5 depend 5 6 Makefile … … 8 9 config.log 9 10 stamp-h 11 ix86-Linux/* 12 omalloc/omTables 13 omalloc/omTables.h 14 omalloc/omTables.inc 15 omalloc/omalloc.h 10 16 trunk/MP/MP/MP_Config.h 11 17 trunk/Singular/mod2.h … … 14 20 trunk/doc/version.texi 15 21 trunk/factory/GNUmakefile 16 trunk/factory/config.h22 config.h 17 23 trunk/factory/ftest/GNUmakefile 18 24 trunk/kernel/mod2.h -
output/dError.c
rebcfee3 r3a4bda 13 13 #include <stdarg.h> 14 14 #include <stdio.h> 15 #include <kernel/mod2.h> 16 #include <Singular/distrib.h> 15 #include "config.h" 16 //#include "distrib.h": for MAKE_DISTRIBUTION 17 #ifdef p_Procs_Static 18 #include "kversion.h" 19 #endif 17 20 #ifdef HAVE_CONFIG_H 18 21 #include <omalloc/omalloc.h> … … 22 25 extern "C" 23 26 { 27 #endif 28 29 #ifndef MAKE_DISTRIBUTION 30 // dummy procedure for setting a breakpoint 31 // within the debugger 32 void dErrorBreak() 33 {} 24 34 #endif 25 35 … … 49 59 50 60 51 #ifndef MAKE_DISTRIBUTION52 // dummy procedure for setting a breakpoint53 // within the debugger54 void dErrorBreak()55 {}56 #endif57 58 61 #ifdef __cplusplus 59 62 } -
output/output.h
rebcfee3 r3a4bda 10 10 #include <stdio.h> 11 11 #include <string.h> 12 13 #if (SIZEOF_LONG == 8) 14 typedef int BOOLEAN; 15 /* testet on x86_64, gcc 3.4.6: 2 % */ 16 /* testet on IA64, gcc 3.4.6: 1 % */ 17 #else 18 /* testet on athlon, gcc 2.95.4: 1 % */ 19 typedef short BOOLEAN; 20 #endif 21 22 #ifndef FALSE 23 #define FALSE 0 24 #endif 25 26 #ifndef TRUE 27 #define TRUE 1 28 #endif 29 30 12 31 13 32 extern char* feErrors;
Note: See TracChangeset
for help on using the changeset viewer.