All pastes #236757 Raw Edit

Stuff

public text v1 · immutable
#236757 ·published 2006-11-04 01:00 UTC
rendered paste body
typedef void (*ft1)(int x, void* genp);
typedef void (*ft2)(int x, unsigned int** pp);

static void bah(int x, unsigned int** pp) { ; }

int main() {
	ft1 foo;
	foo = bah;
	return 0;
}