1 /* Test that the GP gets properly restored, either by the nonlocal
2 receiver or the nested function. */
6 typedef __SIZE_TYPE__
size_t;
7 extern void abort (void);
8 extern void exit (int);
9 extern void qsort(void *, size_t, size_t, int (*)(const void *, const void *));
14 int compare (const void *a
, const void *b
)
20 qsort (array
, 3, 1, compare
);
28 int main() { return 0; }