blob: f96a66cd30b7bb54c6d4f0e96b921a7c513deec0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
extern void abort(void);
typedef long GLint;
void aglChoosePixelFormat (const GLint *);
void
find (const int *alistp)
{
const int *blist;
int list[32];
if (alistp)
blist = alistp;
else
{
list[3] = 42;
blist = list;
}
aglChoosePixelFormat ((GLint *) blist);
}
void
aglChoosePixelFormat (const GLint * a)
{
int *b = (int *) a;
if (b[3] != 42)
abort ();
}
int
main (void)
{
find (0);
return 0;
}
|