comparison libinterp/corefcn/mex.cc @ 21751:b571fc85953f

maint: Use two spaces after period to indicate sentence break.
author Rik <rik@octave.org>
date Thu, 19 May 2016 18:48:52 -0700
parents f4d7d0eb5b0c
children aab79a1885cc
comparison
equal deleted inserted replaced
21750:6720e5a220ba 21751:b571fc85953f
2075 mark (ptr); 2075 mark (ptr);
2076 2076
2077 return ptr; 2077 return ptr;
2078 } 2078 }
2079 2079
2080 // Reallocate a pointer obtained from malloc or calloc. If the 2080 // Reallocate a pointer obtained from malloc or calloc.
2081 // pointer is NULL, allocate using malloc. We don't need an 2081 // If the pointer is NULL, allocate using malloc.
2082 // "unmarked" version of this. 2082 // We don't need an "unmarked" version of this.
2083 void *realloc (void *ptr, size_t n) 2083 void *realloc (void *ptr, size_t n)
2084 { 2084 {
2085 void *v; 2085 void *v;
2086 2086
2087 if (ptr) 2087 if (ptr)