index
:
common_c_mistakes.git
master
Common C Mistakes
ac@sigsegv.uk
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
examples
/
malloc-cast.c
blob: 5015147f61d193f1f9e29d04c491a1fec0ad0804 (
plain
) (
blame
)
1
2
3
4
void
f
(
void
)
{
int
*
vals
=
malloc
(
sizeof
(
int
) *
10
);
}