repo.or.cz
/
aesalon.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Continueed playing around with the buildsystem.
[aesalon.git]
/
tests
/
mallocTest.c
blob
3c20be1f1c2834ef795da2ee262f3f894ab8ab66
1
#include <stdio.h>
2
#include <stdlib.h>
3
4
int
main
(
int
argc
,
char
*
argv
[]) {
5
char
*
block
=
malloc
(
sizeof
(
char
) *
1024
);
6
printf
(
"---- mallocTest: block address: %p
\n
"
,
block
);
7
free
(
block
);
8
return
0
;
9
}
10