Skip to content
Snippets Groups Projects
Commit 017e1caf authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Fixed a duplicate declaration.

Rev: src/gc.h:1.74
parent 95563915
Branches
Tags
No related merge requests found
/* /*
* $Id: gc.h,v 1.73 2000/12/16 05:24:40 marcus Exp $ * $Id: gc.h,v 1.74 2001/01/18 09:11:28 mast Exp $
*/ */
#ifndef GC_H #ifndef GC_H
#define GC_H #define GC_H
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
#include "callback.h" #include "callback.h"
#include "queue.h" #include "queue.h"
#include "threads.h" #include "threads.h"
#include "interpret.h"
extern struct pike_queue gc_mark_queue; extern struct pike_queue gc_mark_queue;
extern INT32 num_objects; extern INT32 num_objects;
...@@ -17,7 +18,6 @@ PMOD_EXPORT extern int Pike_in_gc; ...@@ -17,7 +18,6 @@ PMOD_EXPORT extern int Pike_in_gc;
extern int gc_debug; extern int gc_debug;
extern struct callback *gc_evaluator_callback; extern struct callback *gc_evaluator_callback;
extern struct callback_list evaluator_callbacks;
#ifdef PIKE_DEBUG #ifdef PIKE_DEBUG
extern void *gc_svalue_location; extern void *gc_svalue_location;
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment