JS_FRIEND_API for js_DumpGCStats (#ifdef JS_GCMETER only, not part of build).

This commit is contained in:
brendan%mozilla.org 2005-04-04 20:43:47 +00:00
Родитель 96f4bcdcee
Коммит 36eb2aa71d
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -348,7 +348,7 @@ js_InitGC(JSRuntime *rt, uint32 maxbytes)
}
#ifdef JS_GCMETER
void
JS_FRIEND_API(void)
js_DumpGCStats(JSRuntime *rt, FILE *fp)
{
uintN i;

Просмотреть файл

@ -253,7 +253,7 @@ typedef struct JSGCStats {
uint32 segslots; /* total stack segment jsval slots scanned */
} JSGCStats;
extern void
extern JS_FRIEND_API(void)
js_DumpGCStats(JSRuntime *rt, FILE *fp);
#endif /* JS_GCMETER */