mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
4 lines
74 B
C
4 lines
74 B
C
extern int foo(void);
|
|
typedef int (*func_p) (void);
|
|
func_p foo_ptr = foo;
|