Changeset 4f51f2 in git


Ignore:
Timestamp:
Sep 11, 2014, 5:44:02 PM (9 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
cad9d1320047d98fd4177239334b76e7ccee061c
Parents:
fa3704f93f338678359bdd8dcd20e47f5415e9bbbf701ae2dc06c491234833dfbefea37fee27ffee
Message:
Merge pull request #640 from fingolfin/patch-1

Change "libpolys" to "libsingular" in libsingular-config.in
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libsingular-config.in

    rfa3704 r4f51f2  
    4242{
    4343    cat <<EOF
    44 Usage: libpolys-config [OPTION]
     44Usage: libsingular-config [OPTION]
    4545
    4646Known values for OPTION are:
    4747
    48   --prefix              show libpolys installation prefix
     48  --prefix              show libsingular installation prefix
    4949  --libs                print library linking information
    5050  --cflags              print pre-processor and compiler flags
  • xalloc/omalloc.h

    rbf701ae r4f51f2  
    7171static inline void * omAlloc0(size_t s)
    7272{ void *d=omAlloc(s);memset(d,0,s); return d; }
     73static inline void * omalloc0(size_t s)
     74{ if (s!=0) { void *d=omAlloc(s);memset(d,0,s); return d;} else return NULL; }
    7375
    7476static inline void *omRealloc(void *d, size_t ns)
Note: See TracChangeset for help on using the changeset viewer.