/* ctor.c (emx+gcc) -- Copyright (c) 1993 by Eberhard Mattes */

extern int __CTOR_LIST__;
extern void __ctordtorInit1 (int *ptr);

void __ctordtorInit (void)
{
  __ctordtorInit1 (&__CTOR_LIST__);
}
