mirror of
https://github.com/ctm/syn68k.git
synced 2024-12-01 00:51:19 +00:00
14 lines
199 B
C
14 lines
199 B
C
#ifndef _profile_h_
|
|
#define _profile_h_
|
|
|
|
#ifdef PROFILE
|
|
|
|
#include "block.h"
|
|
|
|
extern void profile_block (Block *b);
|
|
extern void dump_profile (const char *file);
|
|
|
|
#endif
|
|
|
|
#endif /* Not _profile_h_ */
|