Changeset e180f5 in git
- Timestamp:
- Aug 31, 2016, 9:55:25 AM (7 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 23ca1f7da923b9cd2662a14a6ae562c743794970
- Parents:
- c7ae4d6af43fc7bc0e0e28fef427ad316ac3a8ce
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
xalloc/omalloc.h
rc7ae4d re180f5 67 67 68 68 static inline void * omalloc(size_t s) 69 { if ( d!=0) {long *d=(long*)malloc(s+sizeof(long)); *d=s;d++;return d; }69 { if (s!=0) {long *d=(long*)malloc(s+sizeof(long)); *d=s;d++;return d; } 70 70 else return NULL; 71 71 }
Note: See TracChangeset
for help on using the changeset viewer.