Changeset fb0d9a in git
- Timestamp:
- Sep 12, 2008, 4:13:43 PM (15 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 0007379bc6256aabf4e5ad04c01f5c36d37561f7
- Parents:
- 713bdb41dced653d5201d807fbc9fc0960af406b
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/mod2.h.in
r713bdb rfb0d9a 6 6 * DO NOT EDIT! 7 7 * 8 * Version: $Id: mod2.h.in,v 1.13 5 2008-08-12 10:08:52Singular Exp $8 * Version: $Id: mod2.h.in,v 1.136 2008-09-12 14:13:43 Singular Exp $ 9 9 *******************************************************************/ 10 10 #ifndef MOD2_H … … 652 652 #endif 653 653 654 /* If we're not using GNU C, elide __attribute__ */ 655 #ifndef __GNUC__ 656 # define __attribute__(x) /*NOTHING*/ 657 #endif 654 658 655 659 #endif /* MOD2_H */ -
kernel/febase.h
r713bdb rfb0d9a 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: febase.h,v 1.1 3 2008-09-10 09:06:37Singular Exp $ */6 /* $Id: febase.h,v 1.14 2008-09-12 14:13:32 Singular Exp $ */ 7 7 /* 8 8 * ABSTRACT: basic i/o … … 112 112 #endif 113 113 114 void Werror(const char *fmt, ...) ;114 void Werror(const char *fmt, ...) __attribute__((format(printf,1,2))); 115 115 void WerrorS(const char *s); 116 116 void WarnS(const char *s); 117 void Print(const char* fmt, ...) ;117 void Print(const char* fmt, ...) __attribute__((format(printf,1,2))); 118 118 /* Print should not produce more than strlen(fmt)+510 characters! */ 119 119 -
kernel/mod2.h.in
r713bdb rfb0d9a 6 6 * DO NOT EDIT! 7 7 * 8 * Version: $Id: mod2.h.in,v 1.2 6 2008-08-12 10:08:52 Singular Exp $8 * Version: $Id: mod2.h.in,v 1.27 2008-09-12 14:13:32 Singular Exp $ 9 9 *******************************************************************/ 10 10 #ifndef MOD2_H … … 652 652 #endif 653 653 654 /* If we're not using GNU C, elide __attribute__ */ 655 #ifndef __GNUC__ 656 # define __attribute__(x) /*NOTHING*/ 657 #endif 654 658 655 659 #endif /* MOD2_H */ -
kernel/structs.h
r713bdb rfb0d9a 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: structs.h,v 1.5 5 2008-08-18 12:25:35Singular Exp $ */6 /* $Id: structs.h,v 1.56 2008-09-12 14:13:32 Singular Exp $ */ 7 7 /* 8 8 * ABSTRACT … … 729 729 extern "C" { 730 730 #endif 731 void m2_end(int i) ;731 void m2_end(int i) __attribute__((noreturn)); 732 732 #ifdef __cplusplus 733 733 }
Note: See TracChangeset
for help on using the changeset viewer.