X-Git-Url: http://nitlanguage.org diff --git a/c_src/clib/gc_static_objects_list.h b/c_src/clib/gc_static_objects_list.h deleted file mode 100644 index ab0e0fd..0000000 --- a/c_src/clib/gc_static_objects_list.h +++ /dev/null @@ -1,35 +0,0 @@ -/* This file is part of NIT ( http://www.nitlanguage.org ). - * - * Copyright 2009 Julien Chevalier - * - * This file is free software, which comes along with NIT. This software is - * distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; - * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A - * PARTICULAR PURPOSE. You can modify it is you want, provided this header - * is kept unaltered, and a notification of the changes is added. - * You are allowed to redistribute it and sell it, alone or is a part of - * another product. - */ - -#ifndef GC_LIST -#define GC_LIST - -#include -#include -#include -#include "nit_common.h" - -typedef struct GC_static_object { - val_t *pointer; - struct GC_static_object *next; -} GC_static_object; - -typedef struct GC_List { - GC_static_object *top; - int size; -} GC_List; - -void GC_List_Init(GC_List *list); -int GC_List_Push(GC_List *list, val_t *pointer); - -#endif