log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
hg
>
plcrp
comparison utils.c @ 0:
b31415b4a196
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
Initial check in.
author
samer
date
Fri, 20 Jan 2012 16:58:52 +0000
parents
children
comparison
equal
deleted
inserted
replaced
-1:000000000000
0:b31415b4a196
1
2
static int alloc_array(size_t N, size_t SZ, void **PP) {
3
*PP=calloc(N,SZ);
4
if (*PP) return TRUE;
5
else return memory_error(N*SZ);
6
}
7