Sign in
qemu
/
meson
/
7b43a2e19613f3702935872b21b1020f7d8c6a9b
/
.
/
test cases
/
unit
/
2 testsetups
/
buggy.c
blob: d23883017bcea99d946093d4fe934014138349a7 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<stdlib.h>
#include
<impl.h>
int
main
(
int
argc
,
char
**
argv
)
{
char
*
ten
=
malloc
(
10
);
if
(
getenv
(
"TEST_ENV"
))
{
do_nasty
(
ten
);
printf
(
"TEST_ENV is set.\n"
);
}
free
(
ten
);
return
0
;
}