Changeset b628f60 in git
- Timestamp:
- Oct 6, 2010, 2:44:22 PM (13 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 2ce0263a41d094315deac92a72c01b885d3deafc
- Parents:
- 84dda10e7c43a6aa968e529b71d68fa020e56a79
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2010-10-06 14:44:22+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:31+01:00
- Location:
- xalloc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
xalloc/omFindExec.c
-
Property
mode
changed from
100755
to100644
-
Property
mode
changed from
-
xalloc/omalloc.h
r84dda1 rb628f60 81 81 } 82 82 } 83 static inline void *omReallocSize(void *d, size_t /*os*/, size_t ns)83 static inline void *omReallocSize(void *d, size_t os, size_t ns) 84 84 { if (d==NULL) return omAlloc(ns); 85 85 else … … 108 108 return n; 109 109 } 110 static inline void omFreeSize(void *d, size_t /*s*/)110 static inline void omFreeSize(void *d, size_t s) 111 111 { if (d!=NULL) { long *dd=(long*)d; dd--; free(dd);}} 112 112
Note: See TracChangeset
for help on using the changeset viewer.