repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2011-05-23 Tom de Vries <tom@codesourcery.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
c_ptr_tests_8_funcs.c
blob
2ad01211658cc1463924bdad6a619778236c659f
1
/* This file provides auxilliary functions for c_ptr_tests_8. */
2
3
#include <stdio.h>
4
#include <stdlib.h>
5
6
extern
void
abort
(
void
);
7
8
void
*
create
(
void
)
9
{
10
int
*
a
;
11
a
=
malloc
(
sizeof
(
a
));
12
*
a
=
444
;
13
return
a
;
14
15
}
16
17
void
show
(
int
*
a
)
18
{
19
if
(*
a
==
444
)
20
printf
(
"SUCCESS (%d)
\n
"
, *
a
);
21
else
22
{
23
printf
(
"FAILED: Expected 444, received %d
\n
"
, *
a
);
24
abort
();
25
}
26
}