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
testsuite: Skip analyzer tests on AIX.
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
analyzer
/
function-ptr-1.c
blob
38c3e597d7e08f11af85c7ea1bbe01e9a48c2e6b
1
#include <stdlib.h>
2
3
typedef
void
*(*
fn_ptr_t
) (
void
*);
4
5
void
*
test_1
(
fn_ptr_t fn_ptr
,
void
*
data
)
6
{
7
return
fn_ptr
(
data
);
8
}