Changeset 263824 in git
- Timestamp:
- May 29, 1999, 4:32:43 PM (24 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 04abb5627eef7a26b510f0c92933fb1e84a0b2e9
- Parents:
- c8343c4454ffbfd07e6f50206bf6c595c1ba8831
- Location:
- Singular
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/Makefile.in
rc8343c r263824 49 49 CXXTEMPLFLAGS = @CXXTEMPLFLAGS@ 50 50 CPPFLAGS = -I${srcdir} @CPPFLAGS@ 51 DEFS = -DNDEBUG -D@SING_UNAME@ 51 DEFS = -DNDEBUG -D@SING_UNAME@ @DEFS@ 52 52 LDFLAGS = @LDFLAGS@ 53 53 LD_DYN_FLAGS = @LD_DYN_FLAGS@ -
Singular/gmalloc.c
rc8343c r263824 9 9 */ 10 10 11 #ifdef HAVE_CONFIG_H 11 12 #include "mod2.h" 12 13 #ifdef HAVE_GMALLOC 13 #endif 14 15 /* #ifdef HAVE_GMALLOC */ 16 #if 1 14 17 15 18 … … 332 335 #include <stddef.h> 333 336 #include <sys/cdefs.h> 334 extern size_t __getpagesize __P ((void)); 337 /* obachman: no declaration: conflicts with gnulibc6 unistd.h */ 338 /* extern size_t __getpagesize __P ((void)); */ 335 339 #else 336 340 #if 0 /* obachman: pasted in getpagesize.h manually */ … … 372 376 #endif /* no _SC_PAGESIZE */ 373 377 378 /* obachman: undef , gnulibc6 conflict with unistd.h */ 374 379 #define __getpagesize() getpagesize() 375 380 #endif /* if 0 */ … … 388 393 { 389 394 if (pagesize == 0) 395 /* obachman: use getpagesize, instead 390 396 pagesize = __getpagesize (); 397 */ 398 pagesize = getpagesize (); 391 399 392 400 return memalign (pagesize, size);
Note: See TracChangeset
for help on using the changeset viewer.