Changeset 4f51f2 in git
- Timestamp:
- Sep 11, 2014, 5:44:02 PM (9 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- cad9d1320047d98fd4177239334b76e7ccee061c
- Parents:
- fa3704f93f338678359bdd8dcd20e47f5415e9bbbf701ae2dc06c491234833dfbefea37fee27ffee
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libsingular-config.in
rfa3704 r4f51f2 42 42 { 43 43 cat <<EOF 44 Usage: lib polys-config [OPTION]44 Usage: libsingular-config [OPTION] 45 45 46 46 Known values for OPTION are: 47 47 48 --prefix show lib polysinstallation prefix48 --prefix show libsingular installation prefix 49 49 --libs print library linking information 50 50 --cflags print pre-processor and compiler flags -
xalloc/omalloc.h
rbf701ae r4f51f2 71 71 static inline void * omAlloc0(size_t s) 72 72 { void *d=omAlloc(s);memset(d,0,s); return d; } 73 static inline void * omalloc0(size_t s) 74 { if (s!=0) { void *d=omAlloc(s);memset(d,0,s); return d;} else return NULL; } 73 75 74 76 static inline void *omRealloc(void *d, size_t ns)
Note: See TracChangeset
for help on using the changeset viewer.